From 8efc21385a176c428151c7a2b5e0fee04e576041 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 9 Mar 2021 16:18:19 +0000 Subject: [PATCH] Bug 27652: DBRev 20.12.00.023 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_27652.perl | 11 ----------- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 12 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_27652.perl diff --git a/Koha.pm b/Koha.pm index 78b1f74262..50afbfa667 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.022"; +$VERSION = "20.12.00.023"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_27652.perl b/installer/data/mysql/atomicupdate/bug_27652.perl deleted file mode 100644 index ba0581bf3f..0000000000 --- a/installer/data/mysql/atomicupdate/bug_27652.perl +++ /dev/null @@ -1,11 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - - $dbh->do(q{ - UPDATE systempreferences - SET value=REPLACE(value, '|', ',') - WHERE variable="OPACHoldsIfAvailableAtPickupExceptions" - OR variable="BatchCheckoutsValidCategories" - }); - NewVersion( $DBversion, 27652, "Separate values for OPACHoldsIfAvailableAtPickupExceptions and BatchCheckoutsValidCategories with comma"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 4d1eee90fe..a531cfcd62 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -23658,6 +23658,18 @@ Barcode: [% item.barcode %]
NewVersion( $DBversion, 12224, "Add CHECKINSLIP notice" ); } +$DBversion = '20.12.00.023'; +if( CheckVersion( $DBversion ) ) { + + $dbh->do(q{ + UPDATE systempreferences + SET value=REPLACE(value, '|', ',') + WHERE variable="OPACHoldsIfAvailableAtPickupExceptions" + OR variable="BatchCheckoutsValidCategories" + }); + NewVersion( $DBversion, 27652, "Separate values for OPACHoldsIfAvailableAtPickupExceptions and BatchCheckoutsValidCategories with comma"); +} + # 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