From e4999b25052d1ad9400a0f9fd5289a49eea1bddc Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Sun, 25 Jan 2015 20:04:57 +0100 Subject: More namespace changes Changed version to 3.2.99; Attempt at fixing autoloading fixed enough namespaces to have some demos running --- framework/TApplication.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'framework/TApplication.php') diff --git a/framework/TApplication.php b/framework/TApplication.php index 63ea72b8..286a6895 100644 --- a/framework/TApplication.php +++ b/framework/TApplication.php @@ -386,7 +386,7 @@ class TApplication extends \Prado\TComponent if($this->_requestCompleted) break; $method=self::$_steps[$this->_step]; - Prado::trace("Executing $method()",'System.TApplication'); + Prado::trace("Executing $method()",'Prado\TApplication'); $this->$method(); $this->_step++; } @@ -539,7 +539,7 @@ class TApplication extends \Prado\TComponent */ public function setMode($value) { - $this->_mode=TPropertyValue::ensureEnum($value,'TApplicationMode'); + $this->_mode=TPropertyValue::ensureEnum($value,'\Prado\TApplicationMode'); } /** @@ -1042,7 +1042,7 @@ class TApplication extends \Prado\TComponent */ protected function initApplication() { - Prado::trace('Initializing application','System.TApplication'); + Prado::trace('Initializing application','Prado\TApplication'); if($this->_configFile!==null) { @@ -1111,7 +1111,7 @@ class TApplication extends \Prado\TComponent */ public function onError($param) { - Prado::log($param->getMessage(),TLogger::ERROR,'System.TApplication'); + Prado::log($param->getMessage(),TLogger::ERROR,'Prado\TApplication'); $this->raiseEvent('OnError',$this,$param); $this->getErrorHandler()->handleError($this,$param); } -- cgit v1.2.3