- Fix for bug #2691: crash due to locale module. Patch by Bruno.
parent
15a2cbd243
commit
2c342df5a9
|
@ -314,7 +314,7 @@ function locale($string) {
|
||||||
$locale_t = unserialize($cache->data);
|
$locale_t = unserialize($cache->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($locale_t[$string] != "") {
|
if (array_key_exists($string, $locale_t)) {
|
||||||
$string = $locale_t[$string];
|
$string = $locale_t[$string];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -314,7 +314,7 @@ function locale($string) {
|
||||||
$locale_t = unserialize($cache->data);
|
$locale_t = unserialize($cache->data);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($locale_t[$string] != "") {
|
if (array_key_exists($string, $locale_t)) {
|
||||||
$string = $locale_t[$string];
|
$string = $locale_t[$string];
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in New Issue