diff options
author | lpsolit%gmail.com <> | 2007-10-09 17:34:41 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-10-09 17:34:41 +0200 |
commit | 1b8e4cadbdab2e8a335c9f1186a301e493a9a8b3 (patch) | |
tree | fa2b295246b059f0a3524c74972566c14b59ce1f /buglist.cgi | |
parent | 73553366455cb23a6df1847d67bde74386c87742 (diff) | |
download | bugzilla-1b8e4cadbdab2e8a335c9f1186a301e493a9a8b3.tar.gz bugzilla-1b8e4cadbdab2e8a335c9f1186a301e493a9a8b3.tar.xz |
Bug 387672: Move BUG_STATE_OPEN and is_open_state() into Status.pm - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 73649f785..71b6fd14f 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -46,6 +46,7 @@ use Bugzilla::Bug; use Bugzilla::Product; use Bugzilla::Keyword; use Bugzilla::Field; +use Bugzilla::Status; use Date::Parse; @@ -1111,7 +1112,7 @@ $vars->{'columns'} = $columns; $vars->{'displaycolumns'} = \@displaycolumns; $vars->{'openstates'} = [BUG_STATE_OPEN]; -$vars->{'closedstates'} = [map {$_->name} Bugzilla::Status::closed_bug_statuses()]; +$vars->{'closedstates'} = [map {$_->name} closed_bug_statuses()]; # The list of query fields in URL query string format, used when creating # URLs to the same query results page with different parameters (such as |