diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-21 00:41:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-21 00:41:35 -0400 |
commit | 13c1db0bce051136b55dca0d8532b58883567de2 (patch) | |
tree | fc5bc99f02fd715d43bc66b3ca9fbbafbe0dcd85 | |
parent | 912e9b3f4ff3e43838e44e9ab804765e9573206f (diff) |
output with whitespace between lines
darcs-hash:20080721044135-84dde-6af27ed89647ca276750024b32b5004fa104c037.gz
-rwxr-xr-x | maildaemon.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maildaemon.php b/maildaemon.php index 334877ccb..24f590189 100755 --- a/maildaemon.php +++ b/maildaemon.php @@ -205,11 +205,11 @@ class MailerDaemon { { break; } - $output .= $line; + $output .= ' ' . $line; } preg_replace('/\s+/', ' ', $output); - return $output; + return trim($output); } } |