From 82638e85b594ebfc10f4904016c3524758b8903c Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 24 Oct 2024 08:45:09 +0000 Subject: [PATCH] Bug 23295: (QA follow-up) Terminology: borrowers => patrons Signed-off-by: Katrin Fischer --- misc/cronjobs/restrict_patrons_with_failed_notices.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/restrict_patrons_with_failed_notices.pl b/misc/cronjobs/restrict_patrons_with_failed_notices.pl index 40ae00d09c..e6c1ec2fde 100755 --- a/misc/cronjobs/restrict_patrons_with_failed_notices.pl +++ b/misc/cronjobs/restrict_patrons_with_failed_notices.pl @@ -53,7 +53,7 @@ my @failed_notices = Koha::Notice::Messages->get_failed_notices( { days => 7 } ) if ( C4::Context->preference('RestrictPatronsWithFailedNotices') ) { if (@failed_notices) { - say "There are borrowers with failed SMS or email notices" if $verbose; + say "There are patrons with failed SMS or email notices" if $verbose; foreach my $failed_notice (@failed_notices) {