summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2006-12-04 03:03:21 +0000
committerxue <>2006-12-04 03:03:21 +0000
commit9344b8be5dde09c8d4d3296368d2bb29a18e85e0 (patch)
tree78ad403c55bd60acd03988f799b8fe1ce004b01b
parent9f4e94b1e2125182f5dd04c56a3a065d02c99014 (diff)
invoking resolveRequest when no application config is used.3.0.6
-rw-r--r--framework/TApplication.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/framework/TApplication.php b/framework/TApplication.php
index be551089..a9a9cf15 100644
--- a/framework/TApplication.php
+++ b/framework/TApplication.php
@@ -805,7 +805,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;
}