From: erickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Wed, 28 Oct 2009 19:22:42 +0000 (+0000)
Subject: fixed typo in JOIN clause
X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=6a6f60f4c728d4edcbd19e9ab21ecb9eb3e3a466;p=evergreen%2Fmasslnc.git

fixed typo in JOIN clause

git-svn-id: svn://svn.open-ils.org/ILS/trunk@14653 dcc99617-32d9-48b4-a31d-7c20da2025e4
---

diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
index 5f405cba26..c8903a78c4 100644
--- a/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
+++ b/Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
@@ -419,7 +419,7 @@ sub hold_pull_list {
 		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