[open-ils-commits] r8849 - trunk/Open-ILS/src/perlmods/OpenILS/WWW
svn at svn.open-ils.org
svn at svn.open-ils.org
Sat Mar 1 12:13:19 EST 2008
Author: miker
Date: 2008-03-01 11:41:30 -0500 (Sat, 01 Mar 2008)
New Revision: 8849
Modified:
trunk/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm
Log:
use the correct access method for the id list
Modified: trunk/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm 2008-03-01 16:37:27 UTC (rev 8848)
+++ trunk/Open-ILS/src/perlmods/OpenILS/WWW/SuperCat.pm 2008-03-01 16:41:30 UTC (rev 8849)
@@ -1334,7 +1334,7 @@
'open-ils.search.biblio.multiclass.query' => {} => $search_string
)->gather(1);
- $recs = $supercat->request( 'open-ils.supercat.record.object.retrieve' => $recs->{ids} )->gather(1);
+ $recs = $supercat->request( 'open-ils.supercat.record.object.retrieve' => [ map { $_->[0] } @{$recs->{ids}} ] )->gather(1);
$resp->addRecord(
SRU::Response::Record->new(
More information about the open-ils-commits
mailing list