[open-ils-commits] r10925 - trunk/Open-ILS/src/perlmods/OpenILS/Application

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Oct 27 17:26:24 EDT 2008


Author: erickson
Date: 2008-10-27 17:26:16 -0400 (Mon, 27 Oct 2008)
New Revision: 10925

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm
Log:
oops, wrong order on the params

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm	2008-10-27 21:25:54 UTC (rev 10924)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Cat.pm	2008-10-27 21:26:16 UTC (rev 10925)
@@ -925,7 +925,7 @@
 	my $e = new_editor(authtoken=>$auth, xact=>1);
 	return $e->die_event unless $e->checkauth;
     my ($vol, $evt, $exists) = 
-        OpenILS::Application::Cat::AssetCommon->find_or_create_volume($label, $e, $record_id, $org_id);
+        OpenILS::Application::Cat::AssetCommon->find_or_create_volume($e, $label, $record_id, $org_id);
     return $evt if $evt;
     $e->rollback if $exists;
     $e->commit if $vol;



More information about the open-ils-commits mailing list