From a2383a27029ef5e0b466e227a420e4c327840434 Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Thu, 5 Jun 2014 13:33:14 +0000 Subject: [PATCH] Fix bug with call to undefined "_getlocal" function --- src/mibew/libs/common/locale.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mibew/libs/common/locale.php b/src/mibew/libs/common/locale.php index a8e1cdcf..25afa292 100644 --- a/src/mibew/libs/common/locale.php +++ b/src/mibew/libs/common/locale.php @@ -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;