diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-18 15:08:35 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-18 15:08:35 -0400 |
commit | 54a931a31ac12a8982e8b81af5fd6dde4fa6463a (patch) | |
tree | 75b6c9ec2bc32cdcec38e8f8839e403d75a1213f /lib/mail.php | |
parent | cebbff432a8a0c8087f56d8c8de0865d17441150 (diff) |
LOG_ERROR -> LOG_ERR
darcs-hash:20080718190835-84dde-1ce20cb3ac604f0e9fa9e4ed86118bca7bec3a06.gz
Diffstat (limited to 'lib/mail.php')
-rw-r--r-- | lib/mail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mail.php b/lib/mail.php index f01f88e01..f852f385a 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -42,7 +42,7 @@ function mail_send($recipients, $headers, $body) { assert($backend); # throws an error if it's bad $sent = $backend->send($recipients, $headers, $body); if (PEAR::isError($sent)) { - common_log(LOG_ERROR, 'Email error: ' . $sent->getMessage()); + common_log(LOG_ERR, 'Email error: ' . $sent->getMessage()); return false; } return true; |