From 91ad0813c473f7de1fc0aef3b17e7bc03fb67050 Mon Sep 17 00:00:00 2001 From: Matt Selsky Date: Tue, 1 Jan 2013 23:59:13 +0100 Subject: Bug 816870: All extensions must require Perl 5.10.1 to pass tests r/a=LpSolit --- extensions/Example/lib/Auth/Login.pm | 2 ++ extensions/Example/lib/Auth/Verify.pm | 2 ++ 2 files changed, 4 insertions(+) (limited to 'extensions/Example/lib/Auth') diff --git a/extensions/Example/lib/Auth/Login.pm b/extensions/Example/lib/Auth/Login.pm index 03ca2481d..c1cfe62cc 100644 --- a/extensions/Example/lib/Auth/Login.pm +++ b/extensions/Example/lib/Auth/Login.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Auth::Login; + +use 5.10.1; use strict; use parent qw(Bugzilla::Auth::Login); use constant user_can_create_account => 0; diff --git a/extensions/Example/lib/Auth/Verify.pm b/extensions/Example/lib/Auth/Verify.pm index 0a0b40232..df5059a05 100644 --- a/extensions/Example/lib/Auth/Verify.pm +++ b/extensions/Example/lib/Auth/Verify.pm @@ -6,6 +6,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::Extension::Example::Auth::Verify; + +use 5.10.1; use strict; use parent qw(Bugzilla::Auth::Verify); use Bugzilla::Constants; -- cgit v1.2.3-24-g4f1b