fix for #683
This commit is contained in:
parent
2bd4fe5d77
commit
8ca3eab9fa
1 changed files with 11 additions and 0 deletions
11
search.pl
11
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;
|
||||
|
|
Loading…
Reference in a new issue