diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-03-11 21:23:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-03-11 21:23:06 +0000 |
commit | 052a1da533a8b220e05f3105304184bddf893a8a (patch) | |
tree | f6f47ef7594765afc9c905821e1d02010379b74a /includes/common.inc | |
parent | e603247301989dc1885e4457f43a7ef451a01be3 (diff) | |
download | brdo-052a1da533a8b220e05f3105304184bddf893a8a.tar.gz brdo-052a1da533a8b220e05f3105304184bddf893a8a.tar.bz2 |
- Patch #739450 by mr.baileys: rename WATCHDOG_EMERG to WATCHDOG_EMERGENCY.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/includes/common.inc b/includes/common.inc index 2c2b7bed2..6a108a289 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -5992,14 +5992,14 @@ function drupal_parse_info_format($data) { */ function watchdog_severity_levels() { return array( - WATCHDOG_EMERG => t('emergency'), - WATCHDOG_ALERT => t('alert'), - WATCHDOG_CRITICAL => t('critical'), - WATCHDOG_ERROR => t('error'), - WATCHDOG_WARNING => t('warning'), - WATCHDOG_NOTICE => t('notice'), - WATCHDOG_INFO => t('info'), - WATCHDOG_DEBUG => t('debug'), + WATCHDOG_EMERGENCY => t('emergency'), + WATCHDOG_ALERT => t('alert'), + WATCHDOG_CRITICAL => t('critical'), + WATCHDOG_ERROR => t('error'), + WATCHDOG_WARNING => t('warning'), + WATCHDOG_NOTICE => t('notice'), + WATCHDOG_INFO => t('info'), + WATCHDOG_DEBUG => t('debug'), ); } |