From 18c889c40285c1d90f9c40ec0d8d727fb516307c Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 27 Sep 2024 15:07:51 +0000 Subject: [PATCH] Bug 23685: DBRev 24.06.00.031 Signed-off-by: Katrin Fischer --- Koha.pm | 2 +- .../mysql/{atomicupdate/bug23685.pl => db_revs/240600031.pl} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) rename installer/data/mysql/{atomicupdate/bug23685.pl => db_revs/240600031.pl} (74%) diff --git a/Koha.pm b/Koha.pm index 13188c0dc5..93469b0a86 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.030"; +$VERSION = "24.06.00.031"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug23685.pl b/installer/data/mysql/db_revs/240600031.pl similarity index 74% rename from installer/data/mysql/atomicupdate/bug23685.pl rename to installer/data/mysql/db_revs/240600031.pl index f17fb3dad0..95e109c490 100755 --- a/installer/data/mysql/atomicupdate/bug23685.pl +++ b/installer/data/mysql/db_revs/240600031.pl @@ -3,7 +3,7 @@ use Koha::Installer::Output qw(say_warning say_failure say_success say_info); return { bug_number => "23685", - description => "Add prefs ReportsExportFormatODS and ReportsExportLimit", + description => "Add system preferences ReportsExportFormatODS and ReportsExportLimit", up => sub { my ($args) = @_; my ( $dbh, $out ) = @$args{qw(dbh out)}; @@ -16,6 +16,6 @@ return { ('ReportsExportLimit',NULL,NULL,'Limit for report downloads','Integer'); } ); - say $out "Added new system preferences: ReportsExportFormatODS and ReportsExportLimit"; + say_success( $out, "Added new system preferences 'ReportsExportFormatODS' and 'ReportsExportLimit'" ); }, }; -- 2.39.5