From e536f71ba1f62c53b9ecec5656fd8f822845e6ff Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Tue, 19 Feb 2013 15:58:35 +0100 Subject: [PATCH] Bug 9662 - ISSN search field not passed to Z3950Search Seems like simple omission when passing $pars hash to Z3950Search function. Test scenario: 1. select any Z39.50 search form and enter valid ISSN 2. verify that you don't get any results from remote servers 3. apply this patch and re-check that results are now availble --- cataloguing/z3950_search.pl | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/cataloguing/z3950_search.pl b/cataloguing/z3950_search.pl index 9fc9d68..b8e8a58 100755 --- a/cataloguing/z3950_search.pl +++ b/cataloguing/z3950_search.pl @@ -99,6 +99,7 @@ my $pars= { page => $page, id => \@id, isbn => $isbn, + issn => $issn, title => $title, author => $author, dewey => $dewey, -- 1.7.2.5