From 21e9b55c2c9c2b72b9901233ea9263b5f5edfa5f Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 17 Apr 2019 11:42:05 +0000 Subject: [PATCH] Bug 22311: DBRev 18.12.00.052 Signed-off-by: Nick Clemens --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_22311.perl | 10 ---------- installer/data/mysql/updatedatabase.pl | 11 +++++++++++ 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_22311.perl diff --git a/Koha.pm b/Koha.pm index b7ded1d..8a56f1d 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 = "18.12.00.051"; +$VERSION = "18.12.00.052"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_22311.perl b/installer/data/mysql/atomicupdate/bug_22311.perl deleted file mode 100644 index 64527cc..0000000 --- a/installer/data/mysql/atomicupdate/bug_22311.perl +++ /dev/null @@ -1,10 +0,0 @@ -$DBversion = 'XXX'; # will be replaced by the RM -if( CheckVersion( $DBversion ) ) { - $dbh->do(q{ - INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES - ('OpacMoreSearches', '', NULL, 'Add additional elements to the OPAC more searches bar', 'Textarea') - } ); - - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 22311 - Add a SysPref to allow adding content to the #moresearches div in the opac)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 46b6a7f..310c13c 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -18063,6 +18063,17 @@ if( CheckVersion( $DBversion ) ) { print "Upgrade to $DBversion done (Bug 21336 - Reset login_attempts)\n"; } +$DBversion = '18.12.00.052'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('OpacMoreSearches', '', NULL, 'Add additional elements to the OPAC more searches bar', 'Textarea') + } ); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 22311 - Add a SysPref to allow adding content to the #moresearches div in the opac)\n"; +} + # SEE bug 13068 # if there is anything in the atomicupdate, read and execute it. -- 1.7.2.5