From c4ccd77078cb622e96044936a6956324739b2a84 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 22 Jul 2006 02:57:35 +0000 Subject: [PATCH] r921: Forgot to change this one use of a permissions constant to use the new $bugsys->permissions[] array --- includes/functions_datastore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions_datastore.php b/includes/functions_datastore.php index b53cedb..149dc95 100755 --- a/includes/functions_datastore.php +++ b/includes/functions_datastore.php @@ -148,7 +148,7 @@ function build_assignedto() SELECT user.email, user.displayname, user.userid, user.showemail FROM " . TABLE_PREFIX . "user AS user LEFT JOIN " . TABLE_PREFIX . "usergroup AS usergroup ON (user.usergroupid = usergroup.usergroupid) - WHERE (usergroup.permissions & " . CANBEASSIGNEDTO . ")" + WHERE (usergroup.permissions & " . $bugsys->permissions['canbeassignedto'] . ")" ); while ($user = $bugsys->db->fetch_array($users)) { -- 2.22.5