diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-26 20:56:01 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-09-26 20:56:01 +0200 |
commit | c3a8600e1d8f4e8ec56ce3b20680a07770a822a3 (patch) | |
tree | cfd445fd0fab80b92c92365f413cecc15179406a /extensions | |
parent | bd15d3a19df5acccf283902af08f3ed5abaab31e (diff) | |
download | bugzilla-c3a8600e1d8f4e8ec56ce3b20680a07770a822a3.tar.gz bugzilla-c3a8600e1d8f4e8ec56ce3b20680a07770a822a3.tar.xz |
fix bustage due to bug 891236: it doesn't pass t/002goodperl.t
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/MoreBugUrl/lib/Redmine.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/MoreBugUrl/lib/Redmine.pm b/extensions/MoreBugUrl/lib/Redmine.pm index 60c2ad90c..a1c1382ce 100644 --- a/extensions/MoreBugUrl/lib/Redmine.pm +++ b/extensions/MoreBugUrl/lib/Redmine.pm @@ -6,8 +6,10 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::MoreBugUrl::Redmine; + +use 5.10.1; use strict; -use base qw(Bugzilla::BugUrl); +use parent qw(Bugzilla::BugUrl); ############################### #### Methods #### |