summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/lib/Util.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/MyDashboard/lib/Util.pm')
-rw-r--r--extensions/MyDashboard/lib/Util.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/extensions/MyDashboard/lib/Util.pm b/extensions/MyDashboard/lib/Util.pm
index ce5db005f..fa7cf83b0 100644
--- a/extensions/MyDashboard/lib/Util.pm
+++ b/extensions/MyDashboard/lib/Util.pm
@@ -9,6 +9,10 @@ package Bugzilla::Extension::MyDashboard::Util;
use strict;
+use Bugzilla::CGI;
+use Bugzilla::Search;
+use Bugzilla::Status;
+
use base qw(Exporter);
@Bugzilla::Extension::MyDashboard::Util::EXPORT = qw(
open_states
@@ -17,8 +21,6 @@ use base qw(Exporter);
quoted_closed_states
);
-use Bugzilla::Status;
-
our $_open_states;
sub open_states {
$_open_states ||= Bugzilla::Status->match({ is_open => 1, isactive => 1 });