diff options
author | javalizard <> | 2010-04-18 03:32:22 +0000 |
---|---|---|
committer | javalizard <> | 2010-04-18 03:32:22 +0000 |
commit | 6808797813167ac3ea343dfc794c036d95c6d8af (patch) | |
tree | 5315f8361afb03269eb0e7f1ec13501b39924555 /framework/Web/UI/TThemeManager.php | |
parent | 5aff249d0b574f90f527b7af60604439f8fa3bef (diff) |
ensured that the UI are calling their parent __construct methods
Diffstat (limited to 'framework/Web/UI/TThemeManager.php')
-rw-r--r-- | framework/Web/UI/TThemeManager.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Web/UI/TThemeManager.php b/framework/Web/UI/TThemeManager.php index 410976c4..59b794ce 100644 --- a/framework/Web/UI/TThemeManager.php +++ b/framework/Web/UI/TThemeManager.php @@ -229,6 +229,7 @@ class TTheme extends TApplicationComponent implements ITheme */
public function __construct($themePath,$themeUrl)
{
+ parent::__construct();
$this->_themeUrl=$themeUrl;
$this->_themePath=realpath($themePath);
$this->_name=basename($themePath);
|