From 3439d04e1ea9e4232a87a5d10509e763e113aad4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 8 Feb 2021 13:54:53 +0000 Subject: [PATCH] Bug 27581: DBRev 20.12.00.009 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- .../Bug_27581-rename-UseICU-to-UseICUStyleQuotes.perl | 5 ----- installer/data/mysql/updatedatabase.pl | 6 ++++++ 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug_27581-rename-UseICU-to-UseICUStyleQuotes.perl diff --git a/Koha.pm b/Koha.pm index 50a5824551..40783829c6 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 = "20.12.00.008"; +$VERSION = "20.12.00.009"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/Bug_27581-rename-UseICU-to-UseICUStyleQuotes.perl b/installer/data/mysql/atomicupdate/Bug_27581-rename-UseICU-to-UseICUStyleQuotes.perl deleted file mode 100644 index 5aea1fa077..0000000000 --- a/installer/data/mysql/atomicupdate/Bug_27581-rename-UseICU-to-UseICUStyleQuotes.perl +++ /dev/null @@ -1,5 +0,0 @@ -$DBversion = 'XXX'; -if( CheckVersion( $DBversion ) ) { - $dbh->do( "UPDATE systempreferences SET variable = 'UseICUStyleQUotes' WHERE variable = 'UseICU'" ); - NewVersion( $DBversion, 27581, "Rename UseICU to UseICUStyleQuotes"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 6b5db2fcf5..d330d7df3b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23479,6 +23479,12 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 25552, "Add missing Claims Returned option to MarkLostItemsAsReturned"); } +$DBversion = '20.12.00.009'; +if( CheckVersion( $DBversion ) ) { + $dbh->do( "UPDATE systempreferences SET variable = 'UseICUStyleQUotes' WHERE variable = 'UseICU'" ); + NewVersion( $DBversion, 27581, "Rename system preference 'UseICU' to 'UseICUStyleQuotes'"); +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; -- 2.39.5