From: miker Date: Thu, 13 Jul 2006 20:56:32 +0000 (+0000) Subject: another typo X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3a009d7f4fd7b44a0ea7856d743fd46e09f494dd;p=Evergreen.git another typo git-svn-id: svn://svn.open-ils.org/ILS/trunk@4981 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm b/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm index 171e864585..44fc4b14e4 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm @@ -952,7 +952,11 @@ sub fetch_fleshed_copy { my( $copy, $evt ); $logger->info("Fetching fleshed copy $id"); $copy = $self->cstorereq( - "open-ils.cstore.fleshed.asset.copy.retrieve", $id ); + "open-ils.cstore.direct.asset.copy.retrieve", $id, + { flesh => 1, + flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] } + } + ); $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy; return ($copy, $evt); }