From dfd0a9511897aa42e6187742fe8f79c32515b5a3 Mon Sep 17 00:00:00 2001 From: quix0r Date: Sat, 23 Feb 2008 12:12:58 +0000 Subject: [PATCH] Wrong constant fixed --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 5027229b64..25aa0e9336 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -662,7 +662,7 @@ function GET_LANGUAGE() { $ret = get_session('mx_lang'); // Fixes a warning before the session has the mx_lang constant - if (empty($ret)) $ret = DEFAULT_LANGUAGE; + if (empty($ret)) $ret = DEFAULT_LANG; } return $ret; } -- 2.39.5