From 1001cbba7b16ccc4611bbee0474264bb551d1ea5 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 1 Sep 2012 23:43:00 +0200 Subject: Bug 787529: Use |use 5.10.1| everywhere r=wicked a=LpSolit --- mod_perl.pl | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'mod_perl.pl') diff --git a/mod_perl.pl b/mod_perl.pl index ac6956b1b..81aae301e 100644 --- a/mod_perl.pl +++ b/mod_perl.pl @@ -7,6 +7,8 @@ # defined by the Mozilla Public License, v. 2.0. package Bugzilla::ModPerl; + +use 5.10.1; use strict; use warnings; @@ -107,7 +109,10 @@ foreach my $file (glob "$cgi_path/*.cgi") { } package Bugzilla::ModPerl::ResponseHandler; + +use 5.10.1; use strict; + use base qw(ModPerl::Registry); use Bugzilla; @@ -132,7 +137,10 @@ sub handler : method { package Bugzilla::ModPerl::CleanupHandler; + +use 5.10.1; use strict; + use Apache2::Const -compile => qw(OK); sub handler { -- cgit v1.2.3-24-g4f1b