From e9a360158a5990cdb4077b1ac96d9210cdb40ba6 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 24 Feb 2026 13:03:01 +0000 Subject: [PATCH] Bug 14962: (QA follow-up) Set bug_number in atomicupdate script The bug_number field was left as an empty string. The Koha installer framework uses this field to track which database updates have been applied and to report status. Set it to 14962. Sponsored-by: ByWater Solutions Signed-of-by: Martin Renvoize --- .../data/mysql/atomicupdate/bug_14962-temporary_shelves.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/data/mysql/atomicupdate/bug_14962-temporary_shelves.pl b/installer/data/mysql/atomicupdate/bug_14962-temporary_shelves.pl index 3a228641ebc..102124658b4 100755 --- a/installer/data/mysql/atomicupdate/bug_14962-temporary_shelves.pl +++ b/installer/data/mysql/atomicupdate/bug_14962-temporary_shelves.pl @@ -1,7 +1,7 @@ use Modern::Perl; return { - bug_number => "", + bug_number => "14962", description => "Add display tables for display module", up => sub { my ($args) = @_; -- 2.50.1 (Apple Git-155)