diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-22 19:31:24 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-22 19:31:24 +0200 |
commit | ab66aa5a70786430d6b4048139ce30ac9cb737eb (patch) | |
tree | f097cddf5aae241a1a99426d26a3c8eb1a105444 /Bugzilla | |
parent | 086def4fec205413893406108c2d9b2193b0438d (diff) | |
download | bugzilla-ab66aa5a70786430d6b4048139ce30ac9cb737eb.tar.gz bugzilla-ab66aa5a70786430d6b4048139ce30ac9cb737eb.tar.xz |
Bug 163570 - Bugzilla::Search missing Date::Format include
patch by jussi@comlink.fi (Jussi Sirpoma), r=bbaetz x2
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 9ce9d78f4..c79e25d08 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -37,6 +37,8 @@ package Bugzilla::Search; use Bugzilla::Util; +use Date::Format; + # Create a new Search sub new { my $invocant = shift; |