diff options
author | bbaetz%acm.org <> | 2003-06-03 18:47:37 +0200 |
---|---|---|
committer | bbaetz%acm.org <> | 2003-06-03 18:47:37 +0200 |
commit | 1d057f02b277d29ad4d232d598c49b0344798b40 (patch) | |
tree | 5dd73500b1cf10b51875179f7559c8ec97f0b5be /attachment.cgi | |
parent | 3a843833f4ab5d07f10e199daa7ec317e03b9959 (diff) | |
download | bugzilla-1d057f02b277d29ad4d232d598c49b0344798b40.tar.gz bugzilla-1d057f02b277d29ad4d232d598c49b0344798b40.tar.xz |
Bug 180635 - Enhance Bugzilla::User to store additional information
r=myk,jake
Diffstat (limited to 'attachment.cgi')
-rwxr-xr-x | attachment.cgi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/attachment.cgi b/attachment.cgi index ece6522d9..e70fb88f4 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -693,11 +693,11 @@ sub update "flaginclusions AS i READ, flagexclusions AS e READ, " . # cc, bug_group_map, user_group_map, and groups are in here so we # can check the permissions of flag requestees and email addresses - # on the flag type cc: lists via the ConfirmGroup and CanSeeBug - # function calls in Flag::notify. group_group_map is in here in case - # ConfirmGroup needs to call DeriveGroup. profiles and user_group_map - # would be READ locks instead of WRITE locks if it weren't for - # DeriveGroup, which needs to write to those tables. + # on the flag type cc: lists via the CanSeeBug + # function call in Flag::notify. group_group_map is in here in case + # Bugzilla::User needs to rederive groups. profiles and + # user_group_map would be READ locks instead of WRITE locks if it + # weren't for derive_groups, which needs to write to those tables. "bugs READ, profiles WRITE, " . "cc READ, bug_group_map READ, user_group_map WRITE, " . "group_group_map READ, groups READ"); |