diff options
Diffstat (limited to 'www/inc/l10nget.inc.php')
-rw-r--r-- | www/inc/l10nget.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/inc/l10nget.inc.php b/www/inc/l10nget.inc.php index f04b18c..cdc3418 100644 --- a/www/inc/l10nget.inc.php +++ b/www/inc/l10nget.inc.php @@ -5,7 +5,7 @@ function get_lang_from_agent($accept) { $acceptarr = explode("," , $accept); foreach ($acceptarr as $lang) { //get rid of trailing garbage - $lang = ereg_replace("^(.*)\;.*","\\1", $lang); + $lang = preg_replace("/^(.*)\;.*/","\\1", $lang); if (is_dir("l10n/$lang")) { return $lang; exit; |