https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30515
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|[email protected] |[email protected] --- Comment #34 from Jonathan Druart <[email protected]> --- (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. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
