Bugzilla – Attachment 8447 Details for
Bug 7779
tools/letter.pl: scope vars for plack
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 7779 - tools/letter.pl: scope vars for plack
0001-Bug-7779-tools-letter.pl-scope-vars-for-plack.patch (text/plain), 1.68 KB, created by
Alex Arnaud
on 2012-03-21 15:58:40 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 7779 - tools/letter.pl: scope vars for plack
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2012-03-21 15:58:40 UTC
Size:
1.68 KB
patch
obsolete
>From 1779696ea6bb36d40928d6e09570f89c3e0d2433 Mon Sep 17 00:00:00 2001 >From: Dobrica Pavlinusic <dpavlin@rot13.org> >Date: Wed, 21 Mar 2012 14:26:02 +0100 >Subject: [PATCH] Bug 7779 - tools/letter.pl: scope vars for plack > >Signed-off-by: Alex Arnaud <alex@stephane-E5420> >--- > tools/letter.pl | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/tools/letter.pl b/tools/letter.pl >index eb9d6a6..44f21ab 100755 >--- a/tools/letter.pl >+++ b/tools/letter.pl >@@ -85,17 +85,17 @@ sub protected_letters { > return { map { $_->[0] => 1 } @{$codes} }; > } > >-my $input = new CGI; >+our $input = new CGI; > my $searchfield = $input->param('searchfield'); > my $script_name = '/cgi-bin/koha/tools/letter.pl'; >-my $branchcode = $input->param('branchcode'); >+our $branchcode = $input->param('branchcode'); > my $code = $input->param('code'); > my $module = $input->param('module'); > my $content = $input->param('content'); > my $op = $input->param('op') || ''; > my $dbh = C4::Context->dbh; > >-my ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user( >+our ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user( > { > template_name => 'tools/letter.tmpl', > query => $input, >@@ -106,7 +106,7 @@ my ( $template, $borrowernumber, $cookie, $staffflags ) = get_template_and_user( > } > ); > >-my $my_branch = C4::Context->preference("IndependantBranches") && !$staffflags->{'superlibrarian'} >+our $my_branch = C4::Context->preference("IndependantBranches") && !$staffflags->{'superlibrarian'} > ? C4::Context->userenv()->{'branch'} > : undef; > # we show only the TMPL_VAR names $op >-- >1.7.4.1 >
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 7779
:
8408
|
8442
| 8447