diff options
author | xue <> | 2006-12-04 03:15:22 +0000 |
---|---|---|
committer | xue <> | 2006-12-04 03:15:22 +0000 |
commit | 6b5f0bdbfb621ab3e4ec0f23c000b780d030d47f (patch) | |
tree | 0ae63ad93e55a34189c3f4ff5d4cb8e959495fce /framework/TApplication.php | |
parent | 562979c4a8fe47952edf7986d4144624e41630f7 (diff) |
merge from 3.0 branch till 1559.
Diffstat (limited to 'framework/TApplication.php')
-rw-r--r-- | framework/TApplication.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php index be2cce19..8cf97de7 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -806,7 +806,9 @@ class TApplication extends TComponent if($this->_configFile===null) { - $this->getRequest()->setAvailableServices(array(self::PAGE_SERVICE_ID)); + $request=$this->getRequest(); + $request->setAvailableServices(array(self::PAGE_SERVICE_ID)); + $request->resolveRequest(); $this->_service=$this->getPageService(); return; } |