[PHPPlanner-cvs] phpplanner/lib functions.php,1.6,1.7
Status: Beta
Brought to you by:
tomsommer
From: Tom S. <tom...@us...> - 2004-04-24 22:50:33
|
Update of /cvsroot/phpplanner/phpplanner/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5444/lib Modified Files: functions.php Log Message: fixups Index: functions.php =================================================================== RCS file: /cvsroot/phpplanner/phpplanner/lib/functions.php,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- functions.php 24 Apr 2004 22:35:43 -0000 1.6 +++ functions.php 24 Apr 2004 22:50:20 -0000 1.7 @@ -19,7 +19,7 @@ function hide() { global $config; - if (!$config['hide'] || $_SESSION['userid'] != 0) + if (!$config['hide_to_unregistered'] || $_SESSION['userid'] != 0) return false; else return true; |