replaced "LC_ALL" with LC_ALL:

Warning: setlocale() [function.setlocale]: Passing locale category name
as string is deprecated. Use the LC_* -constants instead. in
/usr/local/apache2/htdocs/lam/templates/login.php on line 45
This commit is contained in:
dechutes 2003-04-02 20:56:41 +00:00
parent 0a27b5f9d1
commit 7c91dae854
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ if($action == "checklogin")
// setting language
$language = explode(":", $language);
putenv("LANG=" . $language[1]);
setlocale("LC_ALL", $language[0]);
setlocale(LC_ALL, $language[0]);
bindtextdomain("lam", "../locale");
textdomain("lam");