From 63b12a7963ee9b83c92732b004ecdf4e6a1bd751 Mon Sep 17 00:00:00 2001 From: dbs Date: Fri, 22 Jan 2010 22:50:34 +0000 Subject: [PATCH] Fix up minor (but fatal) typo for the birthday boy :) git-svn-id: svn://svn.open-ils.org/ILS/trunk@15370 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm b/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm index 7ef4e94d11..ab4e2db326 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Search/Biblio.pm @@ -566,8 +566,8 @@ sub multiclass_query { while ($query =~ s/((?:keyword(?:\|\w+)?|title(?:\|\w+)?|author(?:\|\w+)?|subject(?:\|\w+)?|series(?:\|\w+)?|site|dir|sort|lang|available):.+?)$//so) { my $qpart = $1; my $where = index($qpart,':'); - my $type = substr($qpart1, 0, $where++); - my $value = substr($qpart1, $where); + my $type = substr($qpart, 0, $where++); + my $value = substr($qpart, $where); next unless $type and $value; -- 2.43.2