From 1f1f0cd63c78a894305c5add708b8a5e30edb243 Mon Sep 17 00:00:00 2001
From: Mason James <mtj@kohaaloha.com>
Date: Tue, 25 Sep 2012 11:21:43 +1200
Subject: [PATCH] Bug 6679 - Fixing code so it passes basic Perl:::Critic tests
Content-Type: text/plain; charset="utf-8"
http://koha-community.org

opac/ilsdi.pl: Stricture disabled at line 217, column 17.  See page 429 of PBP.  (Severity: 5)
---
 opac/ilsdi.pl |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/opac/ilsdi.pl b/opac/ilsdi.pl
index 419c0f2..ca4daa1 100755
--- a/opac/ilsdi.pl
+++ b/opac/ilsdi.pl
@@ -17,15 +17,14 @@
 # with Koha; if not, write to the Free Software Foundation, Inc.,
 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
-use strict;
-use warnings;
-
-use List::MoreUtils qw(any);
+use Modern::Perl;
 
 use C4::ILSDI::Services;
 use C4::Auth;
 use C4::Output;
 use C4::Context;
+
+use List::MoreUtils qw(any);
 use XML::Simple;
 use CGI;
 
@@ -214,7 +213,7 @@ if ( $service and any { $service eq $_ } @services ) {
 
             # Variable functions
             my $sub = do {
-                no strict 'refs';
+#                no strict 'refs';
                 my $symbol = 'C4::ILSDI::Services::' . $service;
                 \&{"$symbol"};
             };
-- 
1.7.2.5