mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-08 00:34:42 +03:00
Fix bug with call to undefined "_getlocal" function
This commit is contained in:
parent
ddd7498016
commit
a2383a2702
@ -272,7 +272,7 @@ function get_localized_string($string, $locale)
|
||||
return $localized[$string];
|
||||
}
|
||||
if ($locale != 'en') {
|
||||
return _getlocal($string, 'en');
|
||||
return get_localized_string($string, 'en');
|
||||
}
|
||||
|
||||
return "!" . $string;
|
||||
|
Loading…
Reference in New Issue
Block a user