diff options
author | xue <> | 2005-12-29 01:16:29 +0000 |
---|---|---|
committer | xue <> | 2005-12-29 01:16:29 +0000 |
commit | 7e0b0798997b197d57d09ef5e690afdb1e6a2712 (patch) | |
tree | 4b4b0901508713d49ddead72324ae60c8b56f1de /framework/Web/THttpRequest.php | |
parent | ccdb91a35602377fe389c6c5b0945478929e0eca (diff) |
Changed module init() method signature.
Diffstat (limited to 'framework/Web/THttpRequest.php')
-rw-r--r-- | framework/Web/THttpRequest.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php index df8c8c3d..c3c9e33d 100644 --- a/framework/Web/THttpRequest.php +++ b/framework/Web/THttpRequest.php @@ -72,9 +72,8 @@ class THttpRequest extends TModule * This method is required by IModule and is invoked by application.
* @param TXmlElement module configuration
*/
- public function init($config=null)
+ public function init($config)
{
- parent::init($config);
// Info about server variables:
// PHP_SELF contains real URI (w/ path info, w/o query string)
// SCRIPT_NAME is the real URI for the requested script (w/o path info and query string)
|