From bb5a7bf526a30d4792d76a417906fb6074e837a9 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Wed, 16 Oct 2013 10:09:12 +0100 Subject: [PATCH] Bug 11058: make variable name unique within its scope routine declares two lexical variables named $stylesheet rename the second to keep code clearer and avoid propagating compile time warnings Signed-off-by: Mark Tompsett Signed-off-by: Kyle M Hall Passes koha-qa.pl, works as advertised! --- C4/Record.pm | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/C4/Record.pm b/C4/Record.pm index 7277f2c..9d72d5a 100644 --- a/C4/Record.pm +++ b/C4/Record.pm @@ -310,9 +310,9 @@ sub _transformWithStylesheet { my $xslt = XML::LibXSLT->new(); my $source = $parser->parse_string($xmlrecord); my $style_doc = $parser->parse_file($xslfile); - my $stylesheet = $xslt->parse_stylesheet($style_doc); - my $results = $stylesheet->transform($source); - my $newxmlrecord = $stylesheet->output_string($results); + my $style_sheet = $xslt->parse_stylesheet($style_doc); + my $results = $style_sheet->transform($source); + my $newxmlrecord = $style_sheet->output_string($results); return ($newxmlrecord); } -- 1.7.2.5