From d7be6586050f7c221bde2644e7b8bdaeed9754e2 Mon Sep 17 00:00:00 2001 From: erickson Date: Mon, 12 Apr 2010 15:08:20 +0000 Subject: [PATCH] var name typo w/ last commit, fixed git-svn-id: svn://svn.open-ils.org/ILS/trunk@16207 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- .../perlmods/OpenILS/Application/Circ/CopyLocations.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm index 5cf22d8000..8172d4434a 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm @@ -24,15 +24,15 @@ __PACKAGE__->register_method( /); sub cl_retrieve_all { - my( $self, $client, $orgId ) = @_; + my( $self, $client, $org_id ) = @_; - if(!$orgId) { + if(!$org_id) { my $otree = $U->get_org_tree(); - $orgId = $otree->id; + $org_id = $otree->id; } return new_editor()->search_asset_copy_location({ - owning_lib => $U->get_org_full_path($org_id); + owning_lib => $U->get_org_full_path($org_id) }); } -- 2.43.2