fix for #683
authortipaul <tipaul>
Fri, 19 Dec 2003 17:28:03 +0000 (17:28 +0000)
committertipaul <tipaul>
Fri, 19 Dec 2003 17:28:03 +0000 (17:28 +0000)
search.pl

index 75de430..42e70a3 100755 (executable)
--- a/search.pl
+++ b/search.pl
@@ -19,6 +19,9 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 # $Log$
+# Revision 1.33  2003/12/19 17:28:03  tipaul
+# fix for #683
+#
 # Revision 1.32  2003/06/11 18:37:55  tonnesen
 # Using boolean_preference instead of preference for 'marc' setting
 #
@@ -156,6 +159,14 @@ if ($search{"dewey"}){
     $search .= "&dewey=$search{dewey}";
     $searchdesc.="dewey $search{dewey}, ";
 }
+if ($search{"illustrator"}){
+    $search .= "&illustrator=$search{illustrator}";
+    $searchdesc.="illustrator $search{illustrator}, ";
+}
+if ($search{"itemnumber"}){
+    $search .= "&itemnumber=$search{itemnumber}";
+    $searchdesc.="barcode $search{itemnumber}, ";
+}
 $search.="&ttype=$search{ttype}";
 
 $search=~ s/ /%20/g;