diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-21 00:40:15 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-21 00:40:15 -0400 |
commit | 912e9b3f4ff3e43838e44e9ab804765e9573206f (patch) | |
tree | 0918e4ab8080645acdceb75919d09654c1d059ee | |
parent | 1fbafb8524137ea0ad5d0da060aa6bd7e8e691f2 (diff) |
explode WHAT, again?
darcs-hash:20080721044015-84dde-e933bf93ff744cfa25d0aaa496002d3b8857d250.gz
-rwxr-xr-x | maildaemon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maildaemon.php b/maildaemon.php index 49c66b99b..334877ccb 100755 --- a/maildaemon.php +++ b/maildaemon.php @@ -186,7 +186,7 @@ class MailerDaemon { } function cleanup_msg($msg) { - $lines = explode("\n"); + $lines = explode("\n", $msg); $output = ''; |