From b18d109f22975e9313b7064d86417e213804ee80 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 30 Apr 2013 09:34:24 +0400 Subject: only get USER_LANGUAGE on schema 120 and up --- include/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index b3130104b..c39b4938c 100644 --- a/include/functions.php +++ b/include/functions.php @@ -97,8 +97,8 @@ $lang = _TRANSLATION_OVERRIDE_DEFAULT; } - if ($_SESSION["uid"]) { - $pref_lang = get_pref("USER_LANGUAGE", $_SESSION["uid"], false); + if ($_SESSION["uid"] && get_schema_version() >= 120) { + $pref_lang = get_pref("USER_LANGUAGE", $_SESSION["uid"]); if ($pref_lang) { $lang = $pref_lang; -- cgit v1.2.3