From 783aed1b07b2cf2bb44b18cff93a1b248d9d6b67 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 5 Jul 2024 13:13:02 +0000 Subject: [PATCH] Bug 18317: DBRev 24.06.00.013 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_18317.pl => db_revs/240600013.pl} | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename installer/data/mysql/{atomicupdate/bug_18317.pl => db_revs/240600013.pl} (78%) diff --git a/Koha.pm b/Koha.pm index 100fa83adb..daa7d9c492 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "24.06.00.012"; +$VERSION = "24.06.00.013"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_18317.pl b/installer/data/mysql/db_revs/240600013.pl similarity index 78% rename from installer/data/mysql/atomicupdate/bug_18317.pl rename to installer/data/mysql/db_revs/240600013.pl index a9df149072..d0d170a0d3 100755 --- a/installer/data/mysql/atomicupdate/bug_18317.pl +++ b/installer/data/mysql/db_revs/240600013.pl @@ -1,4 +1,5 @@ use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "18317", @@ -14,6 +15,6 @@ return { } ); - say $out "Added new system preference 'AllowItemsOnLoanCheckoutSIP'"; + say_success( $out, "Added new system preference 'AllowItemsOnLoanCheckoutSIP'" ); }, }; -- 2.39.5