From d8a93cb3bad86c53431d351b05fa1775e7112f28 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Mon, 16 Sep 2024 14:03:59 -0400 Subject: [PATCH] Bug 26282: (QA follow-up) Fix typo cancelation --- reserve/request.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reserve/request.pl b/reserve/request.pl index fda2dff115d..d9c9c6ec324 100755 --- a/reserve/request.pl +++ b/reserve/request.pl @@ -726,7 +726,7 @@ $template->param(borrowernumber => $borrowernumber_hold); $template->param( failed_holds => \@failed_holds ); -# Show hold cancelation reason only if notice exists +# Show hold cancellation reason only if notice exists my $cancel_notify_templates = Koha::Notice::Templates->search({ module => 'reserves', code => 'HOLD_CANCELLATION' }); my $cancel_notice_branches; while ( my $notice = $cancel_notify_templates->next ) { -- 2.39.3 (Apple Git-146)