diff options
author | Matt Selsky <selsky@columbia.edu> | 2013-01-01 23:59:13 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2013-01-01 23:59:13 +0100 |
commit | 91ad0813c473f7de1fc0aef3b17e7bc03fb67050 (patch) | |
tree | ffdfc11be664e5af96b0f4079345636fc3cfb14a /extensions/BmpConvert | |
parent | 4663186fdcb2ac1142d3697e27a8f67ce3c92510 (diff) | |
download | bugs-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar bugs-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar.gz bugs-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar.bz2 bugs-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.tar.xz bugs-91ad0813c473f7de1fc0aef3b17e7bc03fb67050.zip |
Bug 816870: All extensions must require Perl 5.10.1 to pass tests
r/a=LpSolit
Diffstat (limited to 'extensions/BmpConvert')
-rw-r--r-- | extensions/BmpConvert/Config.pm | 2 | ||||
-rw-r--r-- | extensions/BmpConvert/Extension.pm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/extensions/BmpConvert/Config.pm b/extensions/BmpConvert/Config.pm index 42fb3ceab..91808bc4b 100644 --- a/extensions/BmpConvert/Config.pm +++ b/extensions/BmpConvert/Config.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::BmpConvert; + +use 5.10.1; use strict; use constant NAME => 'BmpConvert'; use constant REQUIRED_MODULES => [ diff --git a/extensions/BmpConvert/Extension.pm b/extensions/BmpConvert/Extension.pm index b30bab604..eb634f4a1 100644 --- a/extensions/BmpConvert/Extension.pm +++ b/extensions/BmpConvert/Extension.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::BmpConvert; + +use 5.10.1; use strict; use parent qw(Bugzilla::Extension); |