https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30515 Jonathan Druart <jonathan.druart@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|glasklas@gmail.com |jonathan.druart@gmail.com --- Comment #34 from Jonathan Druart <jonathan.druart@gmail.com> --- (In reply to Philip Orr from comment #33)
Yes, that fixed it! On to the next error: at step 4) Running overdue_notices.pl now gives the following error:
No circulation ODUE letter transported by shift at /kohadevbox/koha/C4/Letters.pm line 601.
For the record, this error is fixed with the following change: diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl index e7977108116..f090631cc3c 100755 --- a/misc/cronjobs/overdue_notices.pl +++ b/misc/cronjobs/overdue_notices.pl @@ -759,7 +759,7 @@ END_SQL if ( $print_behavior eq 'always' || $print_behavior eq 'fallback' && !@message_transport_types ) { - unshift( @message_transport_types, 'shift' ); + unshift( @message_transport_types, 'print' ); } } else { my @message_transport_types = -- You are receiving this mail because: You are watching all bug changes.