diff options
author | Scott Ullrich <sullrich@su.local> | 2009-09-04 21:03:46 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@su.local> | 2009-09-04 21:03:46 -0400 |
commit | a183dd4da9f82ce859c1675ca9e4da3ea0c11e2c (patch) | |
tree | 258b6af9a833cdcfa425570c0b7304d797f79497 | |
parent | 06287a5fa37968fec193f4b803e31804bfa99df2 (diff) | |
download | pfsense-a183dd4da9f82ce859c1675ca9e4da3ea0c11e2c.zip pfsense-a183dd4da9f82ce859c1675ca9e4da3ea0c11e2c.tar.gz |
Remove newlines
-rw-r--r-- | etc/inc/notices.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/inc/notices.inc b/etc/inc/notices.inc index a959853..49673a6 100644 --- a/etc/inc/notices.inc +++ b/etc/inc/notices.inc @@ -243,9 +243,9 @@ function notify_via_smtp($message) { fclose($fd); if($smtp->SendMessage($from, array($to), $headers, $message)) - log_error("Message sent to {$to} OK.\n"); + log_error("Message sent to {$to} OK"); else - log_error("Could not send the message to {$to}.\nError: {$smtp->error}\n"); + log_error("Could not send the message to {$to} -- Error: {$smtp->error}"); } |