From b8e55a5faa25153eee1c0f55661815142041eb8d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= 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.30.2