output with whitespace between lines

darcs-hash:20080721044135-84dde-6af27ed89647ca276750024b32b5004fa104c037.gz
This commit is contained in:
Evan Prodromou 2008-07-21 00:41:35 -04:00
parent 912e9b3f4f
commit 13c1db0bce
1 changed files with 2 additions and 2 deletions

View File

@ -205,11 +205,11 @@ class MailerDaemon {
{
break;
}
$output .= $line;
$output .= ' ' . $line;
}
preg_replace('/\s+/', ' ', $output);
return $output;
return trim($output);
}
}