From 8505daaf796e5dc4ae11c075159cba711418a770 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Jul 2021 13:45:17 +0000 Subject: [PATCH] Bug 20310: DBRev 21.06.00.008 Signed-off-by: Jonathan Druart --- Koha.pm | 2 +- installer/data/mysql/atomicupdate/bug_20310.perl | 8 -------- installer/data/mysql/updatedatabase.pl | 9 +++++++++ 3 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_20310.perl diff --git a/Koha.pm b/Koha.pm index fb29cce0eb..bc0687950c 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 = "21.06.00.007"; +$VERSION = "21.06.00.008"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_20310.perl b/installer/data/mysql/atomicupdate/bug_20310.perl deleted file mode 100644 index faffa8e4ba..0000000000 --- a/installer/data/mysql/atomicupdate/bug_20310.perl +++ /dev/null @@ -1,8 +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 - ('ArticleRequestsOpacHostRedirection', '0', NULL, 'Enables redirection from child to host when requesting article on OPAC', 'YesNo') - }); - NewVersion( $DBversion, 20310, "Add pref ArticleRequestsOpacHostRedirection"); -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 0ab880f73d..d03c021799 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -24411,6 +24411,15 @@ if( CheckVersion( $DBversion ) ) { NewVersion( $DBversion, 11879, "Add a new field to patron record: main contact method"); } +$DBversion = '21.06.00.008'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('ArticleRequestsOpacHostRedirection', '0', NULL, 'Enables redirection from child to host when requesting article on OPAC', 'YesNo') + }); + NewVersion( $DBversion, 20310, "Add pref ArticleRequestsOpacHostRedirection"); +} + # 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