From: miker Date: Fri, 12 Mar 2010 14:56:41 +0000 (+0000) Subject: return the correct failpart for precat/noncat items X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=821d5e775efffaeaa262a9bee1c8751389991541;p=Evergreen.git return the correct failpart for precat/noncat items git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_0@15825 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/100.circ_matrix.sql b/Open-ILS/src/sql/Pg/100.circ_matrix.sql index 25d05f5374..ec0239400f 100644 --- a/Open-ILS/src/sql/Pg/100.circ_matrix.sql +++ b/Open-ILS/src/sql/Pg/100.circ_matrix.sql @@ -254,7 +254,7 @@ BEGIN -- Fail if we couldn't find the item IF item_object.id IS NULL THEN - result.fail_part := 'no_user'; + result.fail_part := 'no_item'; result.success := FALSE; done := TRUE; RETURN NEXT result;