diff options
Diffstat (limited to 'framework/I18N')
-rw-r--r-- | framework/I18N/core/HTTPNegotiator.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/framework/I18N/core/HTTPNegotiator.php b/framework/I18N/core/HTTPNegotiator.php index f5eb876c..31639a99 100644 --- a/framework/I18N/core/HTTPNegotiator.php +++ b/framework/I18N/core/HTTPNegotiator.php @@ -62,6 +62,8 @@ class HTTPNegotiator //$basedir = CultureInfo::dataDir();
//$ext = CultureInfo::fileExt();
+ $info = new CultureInfo();
+
foreach(explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']) as $lang)
{
// Cut off any q-value that might come after a semi-colon
@@ -91,7 +93,9 @@ class HTTPNegotiator }
}
- if(CultureInfo::validCulture($lang))
+
+
+ if($info->validCulture($lang))
$this->languages[] = $lang;
}
|