diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-29 18:25:41 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-29 18:25:41 +0200 |
commit | 4c1922a6e893428bfbd43bc41ff4245384d8b543 (patch) | |
tree | 6c55aaa02be826e1352dd2d5be88b5ff61935029 /Bugzilla/Search.pm | |
parent | 90c042db954fe86d555c2d3e413dd70f26d55cd4 (diff) | |
download | bugzilla-4c1922a6e893428bfbd43bc41ff4245384d8b543.tar.gz bugzilla-4c1922a6e893428bfbd43bc41ff4245384d8b543.tar.xz |
Bug 163829 - move pref code into a separate package
r=joel, preed
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index b8cc9fed8..46921da28 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -34,6 +34,7 @@ use vars qw($userid $usergroupset); package Bugzilla::Search; +use Bugzilla::Config; use Bugzilla::Util; use Date::Format; @@ -314,7 +315,7 @@ sub init { "^long_?desc," => sub { my $table = "longdescs_$chartid"; push(@supptables, "longdescs $table"); - if (&::Param("insidergroup") && !&::UserInGroup(&::Param("insidergroup"))) { + if (Param("insidergroup") && !&::UserInGroup(Param("insidergroup"))) { push(@wherepart, "$table.isprivate < 1") ; } push(@wherepart, "$table.bug_id = bugs.bug_id"); |