From d72b061028abfd3dcdf5f59894057f04c78bf429 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Wed, 24 Jul 2013 17:20:18 +0000 Subject: [PATCH] bug 8169: add LC Control Number to Z39.50 search form To test: [1] Bring up the Z39.50 search form. You should see that "LC Control Number" is now listed as a search option. [2] Enter '98046370' as the LCCN and search the Library of Congress Z39.50 server. [3] You should get back one hit for "Harry Potter and the Chamber of Secrets". [4] Search for other LCCNs, if desired. Signed-off-by: Galen Charlton --- cataloguing/z3950_search.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt | 1 + 2 files changed, 2 insertions(+) diff --git a/cataloguing/z3950_search.pl b/cataloguing/z3950_search.pl index 8534190..3c91951 100755 --- a/cataloguing/z3950_search.pl +++ b/cataloguing/z3950_search.pl @@ -103,6 +103,7 @@ my $pars= { author => $author, dewey => $dewey, subject => $subject, + lccn => $lccn, lccall => $lccall, controlnumber => $controlnumber, stdid => $stdid, diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt index 7e5b0af..0064893 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt @@ -112,6 +112,7 @@ tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
  • +
  • -- 1.7.10.4