more ...
authormiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 13 Jul 2006 20:42:30 +0000 (20:42 +0000)
committermiker <miker@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 13 Jul 2006 20:42:30 +0000 (20:42 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@4979 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm

index 8fc37c6..08bf36a 100644 (file)
@@ -843,10 +843,7 @@ sub user_retrieve_by_barcode {
        my $card = OpenILS::Application::AppUtils->simple_scalar_request(
                        "open-ils.cstore", 
                        "open-ils.cstore.direct.actor.card.search.atomic",
-                       { barcode => $barcode },
-                       { flesh => 1,
-                         flesh_fields => { ac => [ 'usr' ] }
-                       }
+                       { barcode => $barcode }
        );
 
        if(!$card || !$card->[0]) {
index a724c93..e8f6dac 100644 (file)
@@ -151,7 +151,7 @@ sub bucket_retrieve_class {
        $logger->debug("User " . $staff->id . 
                " retrieving buckets for user $userid [class=$class, type=$type]");
 
-       my $meth = $types{$class} . ".search_where.atomic";
+       my $meth = $types{$class} . ".search.atomic";
        my $buckets;
 
        if( $type ) {