From b2612d32390fc5e6825427799f9ddc1c7f949982 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 12 May 2021 15:29:01 +0000 Subject: [PATCH] Bug 18989: DBRev 20.12.00.050 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_18989.sql | 2 -- installer/data/mysql/updatedatabase.pl | 10 ++++++++++ 3 files changed, 11 insertions(+), 3 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_18989.sql diff --git a/Koha.pm b/Koha.pm index 2f07bcd155..a2653023f5 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.049"; +$VERSION = "20.12.00.050"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_18989.sql b/installer/data/mysql/atomicupdate/bug_18989.sql deleted file mode 100644 index 02f059c213..0000000000 --- a/installer/data/mysql/atomicupdate/bug_18989.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES -('OpacHiddenItemsHidesRecord','1','','Hide bibliographic record when all its items are hidden because of OpacHiddenItems','YesNo'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c555f8f1a6..6b0a6b53fe 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24264,6 +24264,16 @@ if ( CheckVersion($DBversion) ) { NewVersion( $DBversion, 28108, "Move action logs 'SERIAL CLAIM' and 'ACQUISITION CLAIM' to a new 'CLAIMS' module" ); } +$DBversion = '20.12.00.050'; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES + ('OpacHiddenItemsHidesRecord','1','','Hide bibliographic record when all its items are hidden because of OpacHiddenItems','YesNo') + }); + + NewVersion( $DBversion, 28108, "Add new systempreference OpacHiddenItemsHidesRecord" ); +} + # 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