[open-ils-commits] r16207 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Apr 12 11:08:23 EDT 2010


Author: erickson
Date: 2010-04-12 11:08:20 -0400 (Mon, 12 Apr 2010)
New Revision: 16207

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm
Log:
var name typo w/ last commit, fixed

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm	2010-04-12 15:08:18 UTC (rev 16206)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Circ/CopyLocations.pm	2010-04-12 15:08:20 UTC (rev 16207)
@@ -24,15 +24,15 @@
 		/);
 
 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)
     });
 }
 



More information about the open-ils-commits mailing list