diff options
author | Jens Klaer <kj.landwehr.software@gmail.com> | 2015-05-29 09:05:49 +0200 |
---|---|---|
committer | Jens Klaer <kj.landwehr.software@gmail.com> | 2015-05-29 09:05:49 +0200 |
commit | 2ae8ccd03b5e765e983e6c8cd263304013757dfb (patch) | |
tree | 1c43de35646a0da339030d3118cb3918355cdb60 | |
parent | 55338f1cf947b8593a3e23094d6feab625370e28 (diff) |
Removed empty constructor not calling parent
Parent constructor in TComponent needs to be called for behaviors to
work.
-rw-r--r-- | framework/Web/UI/TControl.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/framework/Web/UI/TControl.php b/framework/Web/UI/TControl.php index e5e6fa18..f12504be 100644 --- a/framework/Web/UI/TControl.php +++ b/framework/Web/UI/TControl.php @@ -172,13 +172,6 @@ class TControl extends TApplicationComponent implements IRenderable, IBindable private $_rf=array(); /** - * Constructor. - */ - public function __construct() - { - } - - /** * Returns a property value by name or a control by ID. * This overrides the parent implementation by allowing accessing * a control via its ID using the following syntax, |