diff options
author | javalizard <> | 2010-04-18 04:35:48 +0000 |
---|---|---|
committer | javalizard <> | 2010-04-18 04:35:48 +0000 |
commit | 2157ae5323261476ffc67c41e58455feaf6bbecc (patch) | |
tree | eeb30f8c7021fef0b245300c24fa926631b18491 /framework/Security/TUser.php | |
parent | 20f46a1104240afbac704576bc6113d697b3ae7e (diff) |
Ensured parent::__construct calls within Security
Diffstat (limited to 'framework/Security/TUser.php')
-rw-r--r-- | framework/Security/TUser.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/Security/TUser.php b/framework/Security/TUser.php index 35e3e3a5..3c7b6507 100644 --- a/framework/Security/TUser.php +++ b/framework/Security/TUser.php @@ -4,7 +4,7 @@ *
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
- * @copyright Copyright © 2005-2008 PradoSoft + * @copyright Copyright © 2005-2010 PradoSoft
* @license http://www.pradosoft.com/license/
* @version $Id$
* @package System.Security
@@ -52,6 +52,7 @@ class TUser extends TComponent implements IUser */
public function __construct(IUserManager $manager)
{
+ parent::__construct();
$this->_state=array();
$this->_manager=$manager;
$this->setName($manager->getGuestName());
|