diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-11-16 18:50:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-11-16 18:50:12 +0000 |
commit | 8be86731cf95dd48194f21c5e5ab77723b86a0d9 (patch) | |
tree | 8ca14df03d8f207f1fa857299047c81352a7c3bd /modules/dblog | |
parent | 899e4376ba61e7862a9075b16fc9ebae141b3637 (diff) | |
download | brdo-8be86731cf95dd48194f21c5e5ab77723b86a0d9.tar.gz brdo-8be86731cf95dd48194f21c5e5ab77723b86a0d9.tar.bz2 |
- Patch #973242 by pp: inconsistent type name.
Diffstat (limited to 'modules/dblog')
-rw-r--r-- | modules/dblog/dblog.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dblog/dblog.admin.inc b/modules/dblog/dblog.admin.inc index fad50ef34..26b0b50c1 100644 --- a/modules/dblog/dblog.admin.inc +++ b/modules/dblog/dblog.admin.inc @@ -220,7 +220,7 @@ function dblog_filters() { $filters = array(); foreach (_dblog_get_message_types() as $type) { - $types[$type] = $type; + $types[$type] = t($type); } if (!empty($types)) { |