From: miker Date: Mon, 16 Mar 2009 16:13:11 +0000 (+0000) Subject: hide magical ##URI## call numbers from the copy browser in the staff client X-Git-Tag: sprint4-merge-nov22~10510 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=620b26a71af44bd12856d0d35db90bee0ffddcab;p=working%2FEvergreen.git hide magical ##URI## call numbers from the copy browser in the staff client git-svn-id: svn://svn.open-ils.org/ILS/trunk@12539 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm b/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm index 40b13edea9..c492d445ed 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm @@ -374,14 +374,14 @@ sub retrieve_copies { } if( $self->api_name =~ /global/ ) { - return _build_volume_list( { record => $docid, deleted => 'f' } ); + return _build_volume_list( { record => $docid, deleted => 'f', label => { '<>' => '##URI##' } } ); } else { my @all_vols; for my $orgid (@org_ids) { my $vols = _build_volume_list( - { record => $docid, owning_lib => $orgid, deleted => 'f' } ); + { record => $docid, owning_lib => $orgid, deleted => 'f', label => { '<>' => '##URI##' } } ); push( @all_vols, @$vols ); }