Bugzilla – Attachment 22227 Details for
Bug 11058
Compile time warning issued by C4/Record.pm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 11058: make variable name unique within its scope
Bug-11058-make-variable-name-unique-within-its-sco.patch (text/plain), 1.27 KB, created by
Kyle M Hall (khall)
on 2013-10-21 23:15:28 UTC
(
hide
)
Description:
Bug 11058: make variable name unique within its scope
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2013-10-21 23:15:28 UTC
Size:
1.27 KB
patch
obsolete
>From bb5a7bf526a30d4792d76a417906fb6074e837a9 Mon Sep 17 00:00:00 2001 >From: Colin Campbell <colin.campbell@ptfs-europe.com> >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 <mtompset@hotmail.com> >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >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
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 11058
:
22010
|
22013
| 22227