summaryrefslogtreecommitdiff
path: root/framework/I18N
diff options
context:
space:
mode:
authorwei <>2007-01-11 07:05:28 +0000
committerwei <>2007-01-11 07:05:28 +0000
commit34d24de2f004df6ab096f4165eb31e16e70e76bb (patch)
tree39f6fa1306f8b82cf5203fdf254a83a2f894efa7 /framework/I18N
parent513d38062e8d33cf8be7ae3480323fa9750758e9 (diff)
change DomDocument::loadXml to use instance method (static method causes E_STRICT error).
Diffstat (limited to 'framework/I18N')
-rw-r--r--framework/I18N/core/HTTPNegotiator.php6
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;
}