diff options
author | mkanat%bugzilla.org <> | 2006-09-04 23:21:47 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2006-09-04 23:21:47 +0000 |
commit | 7d677ece7d55266f63924bc64cf2190df7c785a0 (patch) | |
tree | 7b666d17b8e5de6a8d1cd86c8a33030073acb9ef /query.cgi | |
parent | Bug 349741: Make Bugzilla::Bug able to do basic bug creation, and have post_b... (diff) | |
download | bugzilla-7d677ece7d55266f63924bc64cf2190df7c785a0.tar.gz bugzilla-7d677ece7d55266f63924bc64cf2190df7c785a0.tar.bz2 bugzilla-7d677ece7d55266f63924bc64cf2190df7c785a0.zip |
Bug 283582: Remove UserInGroup in favor of Bugzilla->user->in_group
Patch By victory(_RSZ_) <bmo2007@rsz.jp> r=mkanat, a=myk
Diffstat (limited to 'query.cgi')
-rwxr-xr-x | query.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,7 +255,7 @@ foreach my $val (editable_bug_fields()) { push @chfields, $val; } -if (UserInGroup(Bugzilla->params->{'timetrackinggroup'})) { +if (Bugzilla->user->in_group(Bugzilla->params->{'timetrackinggroup'})) { push @chfields, "work_time"; } else { @chfields = grep($_ ne "estimated_time", @chfields); |