From 8435688b2c3d35ed0ee5375841f8d17ab1c3d89c Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 27 Sep 2017 12:54:18 -0300 Subject: [PATCH] Bug 19372: (bug 15801 follow-up) pass selected frameworkcode to the template Bug 15801 removes the 2 lines that were necessary to retrieve the framework selected by the user and pass it to the template. All bibliographic records created when adding an order to the basket using an external source used the default framework. Test plan: Add an order to a basket from an external source Select another framework than the default one => Without this patch, whatever the framework you picked, the default one is used => With this patch applied the framework code you will pick will be used Signed-off-by: Marijana Glavica Signed-off-by: Marijana Glavica Signed-off-by: Kyle M Hall Signed-off-by: Jonathan Druart (cherry picked from commit 60a17c1b2b8582620fc94ab9eadd7e8336a5d1fa) Signed-off-by: Fridolin Somers (cherry picked from commit 13f9359dc3da8be011370327b20d9cd4f05ee490) Signed-off-by: Katrin Fischer --- acqui/z3950_search.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/acqui/z3950_search.pl b/acqui/z3950_search.pl index 061bd46f75..20be4d48d2 100755 --- a/acqui/z3950_search.pl +++ b/acqui/z3950_search.pl @@ -34,6 +34,7 @@ use Koha::BiblioFrameworks; my $input = new CGI; my $biblionumber = $input->param('biblionumber')||0; +my $frameworkcode = $input->param('frameworkcode') || q{}; my $title = $input->param('title'); my $author = $input->param('author'); my $isbn = $input->param('isbn'); @@ -63,6 +64,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); $template->param( + frameworkcode => $frameworkcode, frameworks => $frameworks, booksellerid => $booksellerid, basketno => $basketno, -- 2.39.5