11-19-2010, 11:22 PM
When the function setHidden in inc/inc.ClassUser.php is called, it sets the $_isHidden to $isAdmin (Line 9 in the function)
$this->_isHidden = $isAdmin;
should read
$this->_isHidden = $isHidden;
The value of isAdmin is undefined here.
$this->_isHidden = $isAdmin;
should read
$this->_isHidden = $isHidden;
The value of isAdmin is undefined here.