@@ -, +, @@ --------- 0) Feel free to backup your koha-error_log file, and then toast it. $ echo > ~/koha-dev/var/log/koha-error_log 1) Log into staff client 2) Koha administration 3) Global system preferences 4) Circulation 5) Make sure WaitingNotifyAtCheckin is set to Notify. 6) Check out tab 7) Type patron's name 8) Select patron if required 9) Check out an item, but set the due date to be overdue. $ cat ~/koha-dev/var/log/koha-error_log | grep 284 NOTE: the returns.pl one that will be fixed by this. --- circ/returns.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- a/circ/returns.pl +++ a/circ/returns.pl @@ -281,7 +281,7 @@ if ($barcode) { $waiting_holds++; } } - if ($waiting_holds > 0) { + if ($waiting_holds && $waiting_holds > 0) { $template->param( waiting_holds => $waiting_holds, holdsborrowernumber => $borrower->{'borrowernumber'}, --