From c367656d0292e373a96ad98962ef6ed396ff1a9d Mon Sep 17 00:00:00 2001 From: james Date: Fri, 15 Oct 2010 01:46:53 +0000 Subject: [PATCH] also load committee whether its active or not --- user.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.inc.php b/user.inc.php index f603f812..839b1deb 100644 --- a/user.inc.php +++ b/user.inc.php @@ -913,7 +913,7 @@ function updateSessionRoles($u=null) { $_SESSION['roles']=array(); if($u && is_array($u['roles'])) { foreach($u['roles'] AS $r=>$rd) { - if($rd['active']=="yes") + if($rd['active']=="yes" || $r=='admin' || $r=='config' || $r=='committee') $_SESSION['roles'][]=$r; } }