From: Roland Häder Date: Sat, 23 Feb 2008 12:12:58 +0000 (+0000) Subject: Wrong constant fixed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=b8e55a5faa25153eee1c0f55661815142041eb8d Wrong constant fixed --- 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; }