Bugzilla – Attachment 8566 Details for
Bug 7790
tools/manage-marc-import.pl breaks with plack
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 7790 - tools/manage-marc-import.pl breaks with plack
Bug-7790---toolsmanage-marc-importpl-breaks-with-p.patch (text/plain), 1.72 KB, created by
Dobrica Pavlinusic
on 2012-03-23 10:15:07 UTC
(
hide
)
Description:
Bug 7790 - tools/manage-marc-import.pl breaks with plack
Filename:
MIME Type:
Creator:
Dobrica Pavlinusic
Created:
2012-03-23 10:15:07 UTC
Size:
1.72 KB
patch
obsolete
>From 0c2fbc3c24916d9e3d18f8d82803e818e1180699 Mon Sep 17 00:00:00 2001 >From: Dobrica Pavlinusic <dpavlin@rot13.org> >Date: Thu, 22 Mar 2012 11:26:56 +0100 >Subject: [PATCH] Bug 7790 - tools/manage-marc-import.pl breaks with plack > >transfer $template to add_matcher_list for correct scoping >and score $dbh and $runinbackground with our >--- > tools/manage-marc-import.pl | 8 ++++---- > 1 files changed, 4 insertions(+), 4 deletions(-) > >diff --git a/tools/manage-marc-import.pl b/tools/manage-marc-import.pl >index 34d2639..cc22aeb 100755 >--- a/tools/manage-marc-import.pl >+++ b/tools/manage-marc-import.pl >@@ -42,7 +42,7 @@ my $script_name = "/cgi-bin/koha/tools/manage-marc-import.pl"; > my $input = new CGI; > my $op = $input->param('op') || ''; > my $completedJobID = $input->param('completedJobID'); >-my $runinbackground = $input->param('runinbackground'); >+our $runinbackground = $input->param('runinbackground'); > my $import_batch_id = $input->param('import_batch_id') || ''; > > # record list displays >@@ -60,7 +60,7 @@ my ($template, $loggedinuser, $cookie) > > my %cookies = parse CGI::Cookie($cookie); > my $sessionID = $cookies{'CGISESSID'}->value; >-my $dbh = C4::Context->dbh; >+our $dbh = C4::Context->dbh; > > # Frameworks selection loop > { >@@ -433,11 +433,11 @@ sub batch_info { > $template->param('current_matcher_description' => $matcher->description()); > } > } >- add_matcher_list($batch->{'matcher_id'}); >+ add_matcher_list($template,$batch->{'matcher_id'}); > } > > sub add_matcher_list { >- my $current_matcher_id = shift; >+ my ($template,$current_matcher_id) = @_; > my @matchers = C4::Matcher::GetMatcherList(); > if (defined $current_matcher_id) { > for (my $i = 0; $i <= $#matchers; $i++) { >-- >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 7790
:
8483
|
8566
|
8567