]> git.koha-community.org Git - koha.git/commit
Bug 7093: placeholds for suggestion table not working in notices
authorIan Walls <ian.walls@bywatersolutions.com>
Wed, 7 Dec 2011 16:43:20 +0000 (11:43 -0500)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Tue, 13 Dec 2011 19:58:29 +0000 (14:58 -0500)
commitc49e42103cab56ae8e9d2c27ad7798aa18dd1785
treecdb5b4df626df216d75752ecdc49be263d20be2c
parent41c5937615af5efcd0f49428570c482d51209eb4
Bug 7093: placeholds for suggestion table not working in notices

In parseletter_sth, the suggestions table was defined twice.  The first time (which
is the only definition to get called, as it matches first then exists), defined the
primary search keys as borrowernumber and biblionumber.  This is incorrect; the only
usage of the suggestions table tokens is with suggestionid as the key.  This is defined
further down the if/then chain.

This patch removes the erroneous sth query definition.

To test:

1.  Place a suggestion with a patron account with a configured email you can access
2.  Approve or reject it
3.  Verify the message you receive contains suggestion tokens (like title, author and reason)

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Suggestion mails for accepted, rejected and ordered look good now.
I couldn't test the suggestion mail AVAILABLE (bug 7096), but
assuming this would work too.

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
(cherry picked from commit 6e497471e3341788401f86a06347045aed018a2c)

Signed-off-by: Chris Nighswonger <chris.nighswonger@gmail.com>
C4/Letters.pm