From 2327368db3f66247408bc10533b8275b49be7335 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Tue, 25 Jun 2024 15:19:35 +0000 Subject: [PATCH] Bug 33317: DBRev 24.06.00.009 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug_33317.pl => db_revs/240600009.pl} | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename installer/data/mysql/{atomicupdate/bug_33317.pl => db_revs/240600009.pl} (74%) diff --git a/Koha.pm b/Koha.pm index 7d8888c686..768f212a3a 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.008"; +$VERSION = "24.06.00.009"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_33317.pl b/installer/data/mysql/db_revs/240600009.pl similarity index 74% rename from installer/data/mysql/atomicupdate/bug_33317.pl rename to installer/data/mysql/db_revs/240600009.pl index 0df65e2e6e..e9ba72e6d4 100755 --- a/installer/data/mysql/atomicupdate/bug_33317.pl +++ b/installer/data/mysql/db_revs/240600009.pl @@ -1,4 +1,5 @@ use Modern::Perl; +use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "33317", @@ -11,6 +12,6 @@ return { q{INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('OpacMetaRobots','','','Improve search engine crawling.', 'Multiple') } ); - say $out "Added system preference 'OpacMetaRobots'"; + say_success( $out, "Added system preference 'OpacMetaRobots'" ); }, }; -- 2.39.5