From 144bb83d965ed67246bf2483cd7e0ef08b2d2a43 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 18 Mar 2007 05:01:36 +0000 Subject: [PATCH] r1494: We actually need to run array_strip_empty() on FetchUserPermissions() so I guess we'll just do that --- includes/functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/functions.php b/includes/functions.php index 07d59c2..1ba4733 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -734,6 +734,7 @@ function FetchUserPermissions(&$user) { $user['groupids'] = explode(',', $bugsys->userinfo['groupids']); } + $user['groupids'] = $bugsys->funct->array_strip_empty($user['groupids']); foreach ($user['groupids'] AS $group) { -- 2.22.5