From f64d6e8a03f401a8be2c3421295883c9c1038ecb Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 1 Jan 2015 20:49:05 -0500 Subject: [PATCH] Bug 13485 [QA Followup] Signed-off-by: Kyle M Hall --- opac/opac-proxypage.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/opac/opac-proxypage.pl b/opac/opac-proxypage.pl index f2f175b..badd8d0 100755 --- a/opac/opac-proxypage.pl +++ b/opac/opac-proxypage.pl @@ -17,12 +17,11 @@ # with Koha; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +use Modern::Perl; -use strict; use CGI; use C4::Auth; use C4::Output; -use warnings; my $localNetwork = C4::Context->preference('ProxyPageLocalIPs'); my $userIP = $ENV{'REMOTE_ADDR'}; @@ -51,4 +50,4 @@ $template->param( ProxyPageTitle => C4::Context->preference('ProxyPageTitle') ); -output_html_with_http_headers $query, $cookie, $template->output; \ No newline at end of file +output_html_with_http_headers $query, $cookie, $template->output; -- 1.7.9.5