summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/lib/Util.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-11-30 21:03:59 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-11-30 21:03:59 +0100
commit37c8ef5cb2750f8039f3b26422d5a5c7cfc61f59 (patch)
treec372513c649a32eb0273a4a8b4004b676bdad133 /extensions/MyDashboard/lib/Util.pm
parentd83a1c136214a5663a09987c48d66f9a527e7798 (diff)
downloadbugzilla-37c8ef5cb2750f8039f3b26422d5a5c7cfc61f59.tar.gz
bugzilla-37c8ef5cb2750f8039f3b26422d5a5c7cfc61f59.tar.xz
Current dashboard work
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 });