[open-ils-commits] r14653 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Oct 28 15:22:47 EDT 2009


Author: erickson
Date: 2009-10-28 15:22:42 -0400 (Wed, 28 Oct 2009)
New Revision: 14653

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
Log:
fixed typo in JOIN clause

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm	2009-10-28 17:41:55 UTC (rev 14652)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm	2009-10-28 19:22:42 UTC (rev 14653)
@@ -419,7 +419,7 @@
 		SELECT	h.*
 		  FROM	$h_table h
 		  	JOIN $a_table a ON (h.current_copy = a.id)
-		  	LEFT JOIN $ord_table ord (a.location = ord.location AND a.circ_lib = ord.org)
+		  	LEFT JOIN $ord_table ord ON (a.location = ord.location AND a.circ_lib = ord.org)
 		  WHERE	a.circ_lib = ?
 		  	AND h.capture_time IS NULL
 		  	AND h.cancel_time IS NULL



More information about the open-ils-commits mailing list