LetoDMS Community Forum
isHidden value incorrect - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Bugs/Errors (https://community.letodms.com/forumdisplay.php?fid=11)
+--- Thread: isHidden value incorrect (/showthread.php?tid=204)



isHidden value incorrect - Malcolm - 11-19-2010

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.