diff options
author | xue <> | 2005-11-17 15:28:20 +0000 |
---|---|---|
committer | xue <> | 2005-11-17 15:28:20 +0000 |
commit | aa2edcf52ee7438876d826283274bf7e271fad4a (patch) | |
tree | 0028051b95e14fb09f52b993122910d2ef7a2fe8 /framework/Web/THttpRequest.php | |
parent | b4f41b167b62bb628d0809fc0e9438e11dce2bb5 (diff) |
Modified how errors are handled.
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r-- | framework/Web/THttpRequest.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php index 9be0db8a..02bf557f 100644 --- a/framework/Web/THttpRequest.php +++ b/framework/Web/THttpRequest.php @@ -85,7 +85,7 @@ class THttpRequest extends TComponent implements IModule /**
* Initializes the module.
* This method is required by IModule and is invoked by application.
- * @param IApplication application
+ * @param TApplication application
* @param TXmlElement module configuration
*/
public function init($application,$config)
@@ -290,12 +290,15 @@ class THttpRequest extends TComponent implements IModule }
/**
- * @return string languages user browser supports
+ * Returns a list of user preferred languages.
+ * The languages are returned as an array. Each array element
+ * represents a single language preference. The languages are ordered
+ * according to user preferences. The first language is the most preferred.
+ * @return array list of user preferred languages.
*/
public function getUserLanguages()
{
- // TBD ask wei about this
- return $_SERVER['HTTP_ACCEPT_LANGUAGE'];
+ return Prado::getUserLanguages();
}
/**
|