From 242466c7794371b13063c0d023d6b03c55456f1a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 26 Nov 2025 16:23:58 +0000 Subject: [PATCH] Bug 41315: Don't change which branch is used for getting the transports See bug 41316 - the script uses the triggers of the issuing branch when sending by patron library - we shouldn't change this here, but on the next bug --- misc/cronjobs/overdue_notices.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl index 1f7f6af5fd1..f6bd9b2449e 100755 --- a/misc/cronjobs/overdue_notices.pl +++ b/misc/cronjobs/overdue_notices.pl @@ -748,7 +748,7 @@ END_SQL $item_statement->finish; my @message_transport_types = - @{ GetOverdueMessageTransportTypes( $notice_branchcode, $overdue_rules->{categorycode}, $i ) }; + @{ GetOverdueMessageTransportTypes( $branchcode, $overdue_rules->{categorycode}, $i ) }; @message_transport_types = @{ GetOverdueMessageTransportTypes( q{}, $overdue_rules->{categorycode}, $i ) } unless @message_transport_types; -- 2.39.5