From 9344b8be5dde09c8d4d3296368d2bb29a18e85e0 Mon Sep 17 00:00:00 2001 From: xue <> Date: Mon, 4 Dec 2006 03:03:21 +0000 Subject: invoking resolveRequest when no application config is used. --- framework/TApplication.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.3