diff options
author | David <ottodavid@gmx.net> | 2015-08-08 20:44:10 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-08-08 21:11:10 +0200 |
commit | 8b7f06844481deb7ed572c7afb3b3ed3ecf4023c (patch) | |
tree | 31484cd5fe1dbb5094622eacdc5aed01c330b74b | |
parent | f1f2674d28532cd8e876ee1dce63b910e1750255 (diff) |
fixed some class names
-rw-r--r-- | framework/Web/TUrlMapping.php | 2 | ||||
-rw-r--r-- | framework/Web/UI/ActiveControls/TActiveControlAdapter.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/framework/Web/TUrlMapping.php b/framework/Web/TUrlMapping.php index 278e459f..3a228d6d 100644 --- a/framework/Web/TUrlMapping.php +++ b/framework/Web/TUrlMapping.php @@ -95,7 +95,7 @@ class TUrlMapping extends TUrlManager private $_urlPrefix=''; - private $_defaultMappingClass='TUrlMappingPattern'; + private $_defaultMappingClass='System.Web.TUrlMappingPattern'; /** * Initializes this module. diff --git a/framework/Web/UI/ActiveControls/TActiveControlAdapter.php b/framework/Web/UI/ActiveControls/TActiveControlAdapter.php index 3c13cc2f..ea2fc52e 100644 --- a/framework/Web/UI/ActiveControls/TActiveControlAdapter.php +++ b/framework/Web/UI/ActiveControls/TActiveControlAdapter.php @@ -70,9 +70,9 @@ class TActiveControlAdapter extends TControlAdapter if($type===null) { if($this->getControl() instanceof ICallbackEventHandler) - $this->_activeControlType = 'TBaseActiveCallbackControl'; + $this->_activeControlType = 'Prado\\Web\UI\\ActiveControls\\TBaseActiveCallbackControl'; else - $this->_activeControlType = 'TBaseActiveControl'; + $this->_activeControlType = 'Prado\\Web\UI\\ActiveControls\\TBaseActiveControl'; } else $this->_activeControlType = $type; |