From: miker Date: Fri, 12 Mar 2010 15:03:20 +0000 (+0000) Subject: return the correct failpart for precat/noncat items X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=f13dc3ca2004b1a004629255b88c115fb7630163;p=evergreen%2Fmasslnc.git return the correct failpart for precat/noncat items git-svn-id: svn://svn.open-ils.org/ILS/trunk@15827 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 bb9d36a326..55dabe151b 100644 --- a/Open-ILS/src/sql/Pg/100.circ_matrix.sql +++ b/Open-ILS/src/sql/Pg/100.circ_matrix.sql @@ -309,7 +309,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;