]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
output with whitespace between lines
authorEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:41:35 +0000 (00:41 -0400)
committerEvan Prodromou <evan@prodromou.name>
Mon, 21 Jul 2008 04:41:35 +0000 (00:41 -0400)
darcs-hash:20080721044135-84dde-6af27ed89647ca276750024b32b5004fa104c037.gz

maildaemon.php

index 334877ccb856a72d701acd21cae96f09e4ab1810..24f590189727b1f15cc649af1abb5a4dfce8ac83 100755 (executable)
@@ -205,11 +205,11 @@ class MailerDaemon {
                        {
                                break;
                        }
-                       $output .= $line;
+                       $output .= ' ' . $line;
                }
 
                preg_replace('/\s+/', ' ', $output);
-               return $output;
+               return trim($output);
        }
 }