Re: News: News By Author |
Subject: Re: News: News By Author by skenow on 2011/3/20 13:35:47 I may have spotted the trouble - in kernel/user.php. try adding the $id parameter to the __construct() methods, so you get this class XoopsUser extends icms_member_user_Object { private $_deprecated; public function __construct(&$id) { parent::__construct($id); $this->_deprecated = icms_core_Debug::setDeprecated('icms_member_user_Object', sprintf(_CORE_REMOVE_IN_VERSION, '1.4')); } } class XoopsGuestUser extends XoopsUser { private $_deprecated; public function __construct(&$id) { parent::__construct($id); $this->_deprecated = icms_core_Debug::setDeprecated('icms_member_user_Object', sprintf(_CORE_REMOVE_IN_VERSION, '1.4')); } } |