diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-07 19:42:27 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-07 19:42:27 -0400 |
commit | 2c3ed64027506acd12cf9ba2485fd9fa8c519d09 (patch) | |
tree | 94a04819b016ea1bf371f11edbfe11c34d7203e0 /classes/Notice.php | |
parent | 5793a998be8d12c7228dbc9cf432ab05e9dd64df (diff) |
LOG_ERROR -> LOG_ERR (again)
darcs-hash:20080807234227-84dde-a64619c71de020aa2284ca1a36ea2a71ff8b29a6.gz
Diffstat (limited to 'classes/Notice.php')
-rw-r--r-- | classes/Notice.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Notice.php b/classes/Notice.php index c9127bac4..cb220394d 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -68,7 +68,7 @@ class Notice extends DB_DataObject $id = $tag->insert(); if (!$id) { $last_error = PEAR::getStaticProperty('DB_DataObject','lastError'); - common_log(LOG_ERROR, 'DB error inserting hashtag: ' . $last_error->message); + common_log(LOG_ERR, 'DB error inserting hashtag: ' . $last_error->message); common_server_error(sprintf(_('DB error inserting hashtag: %s'), $last_error->message)); return; } |