Fix up minor (but fatal) typo for the birthday boy :)
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 22 Jan 2010 22:50:34 +0000 (22:50 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 22 Jan 2010 22:50:34 +0000 (22:50 +0000)
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

index 7ef4e94..ab4e2db 100644 (file)
@@ -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;