diff --git a/modules/locale.module b/modules/locale.module index ce7ea86d112..9fbb3d38bff 100644 --- a/modules/locale.module +++ b/modules/locale.module @@ -314,7 +314,7 @@ function locale($string) { $locale_t = unserialize($cache->data); } - if ($locale_t[$string] != "") { + if (array_key_exists($string, $locale_t)) { $string = $locale_t[$string]; } else { diff --git a/modules/locale/locale.module b/modules/locale/locale.module index ce7ea86d112..9fbb3d38bff 100644 --- a/modules/locale/locale.module +++ b/modules/locale/locale.module @@ -314,7 +314,7 @@ function locale($string) { $locale_t = unserialize($cache->data); } - if ($locale_t[$string] != "") { + if (array_key_exists($string, $locale_t)) { $string = $locale_t[$string]; } else {