summaryrefslogtreecommitdiff
path: root/framework/Web/UI/ActiveControls/TBaseActiveControl.php
diff options
context:
space:
mode:
authorjavalizard <>2010-04-18 03:32:22 +0000
committerjavalizard <>2010-04-18 03:32:22 +0000
commit6808797813167ac3ea343dfc794c036d95c6d8af (patch)
tree5315f8361afb03269eb0e7f1ec13501b39924555 /framework/Web/UI/ActiveControls/TBaseActiveControl.php
parent5aff249d0b574f90f527b7af60604439f8fa3bef (diff)
ensured that the UI are calling their parent __construct methods
Diffstat (limited to 'framework/Web/UI/ActiveControls/TBaseActiveControl.php')
-rw-r--r--framework/Web/UI/ActiveControls/TBaseActiveControl.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Web/UI/ActiveControls/TBaseActiveControl.php b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
index 92dd3194..2afec4d1 100644
--- a/framework/Web/UI/ActiveControls/TBaseActiveControl.php
+++ b/framework/Web/UI/ActiveControls/TBaseActiveControl.php
@@ -4,7 +4,7 @@
*
* @author Wei Zhuo <weizhuo[at]gamil[dot]com>
* @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2005-2008 PradoSoft
+ * @copyright Copyright &copy; 2005-2010 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Web.UI.ActiveControls
@@ -44,6 +44,7 @@ class TBaseActiveControl extends TComponent
*/
public function __construct($control)
{
+ parent::__construct();
$this->_control = $control;
$this->_options = new TMap;
}