From a7cf73fc7c7a8e4edf7baaeb3564777285b5e59b Mon Sep 17 00:00:00 2001 From: Donovan Jones Date: Fri, 16 Apr 2010 15:42:23 +1200 Subject: [PATCH] Bug 2505 - Add commented use warnings where missing in the C4/ directory --- C4/SIP/xmlparse.pl | 1 + C4/tests/Record_test.pl | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/C4/SIP/xmlparse.pl b/C4/SIP/xmlparse.pl index 6a0b64e0c4..6496c609a1 100755 --- a/C4/SIP/xmlparse.pl +++ b/C4/SIP/xmlparse.pl @@ -7,6 +7,7 @@ # in Sip::Configuration.pm # use strict; +#use warnings; FIXME - Bug 2505 use English; use XML::Simple qw(:strict); diff --git a/C4/tests/Record_test.pl b/C4/tests/Record_test.pl index 9729e32032..f7a65ab0f9 100755 --- a/C4/tests/Record_test.pl +++ b/C4/tests/Record_test.pl @@ -19,7 +19,8 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # # -use strict; use warnings; #FIXME: turn off warnings before release +use strict; +use warnings; # specify the number of tests use Test::More tests => 23; -- 2.20.1