fixed typo in JOIN clause
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 28 Oct 2009 19:22:42 +0000 (19:22 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Wed, 28 Oct 2009 19:22:42 +0000 (19:22 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@14653 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm

index 5f405cb..c8903a7 100644 (file)
@@ -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