From 29bca18047f1d08e6408fbf21e5806cbedcae81c Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Thu, 5 Mar 2020 13:01:22 +0000 Subject: [PATCH] Bug 24369: DBRev 19.12.00.036 Signed-off-by: Martin Renvoize --- Koha.pm | 2 +- .../data/mysql/atomicupdate/bug_24369_CORS.perl | 13 ------------- installer/data/mysql/updatedatabase.pl | 13 +++++++++++++ 3 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_24369_CORS.perl diff --git a/Koha.pm b/Koha.pm index c9b2003..eca34fb 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 = "19.12.00.035"; +$VERSION = "19.12.00.036"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_24369_CORS.perl b/installer/data/mysql/atomicupdate/bug_24369_CORS.perl deleted file mode 100644 index e746319..0000000 --- a/installer/data/mysql/atomicupdate/bug_24369_CORS.perl +++ /dev/null @@ -1,13 +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 - ('AccessControlAllowOrigin', '', NULL, 'Set the Access-Control-Allow-Origin header to the specified value', 'Free'); - }); - - # Always end with this (adjust the bug info) - SetVersion( $DBversion ); - print "Upgrade to $DBversion done (Bug 24369 - Add CORS support to Koha)\n"; -} diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 33e18f2..02beaaa 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -21046,6 +21046,19 @@ if ( CheckVersion($DBversion) ) { print "Upgrade to $DBversion done (Bug 23442 - Add a refund option to the point of sale system)\n"; } +$DBversion = '19.12.00.036'; +if( CheckVersion( $DBversion ) ) { + $dbh->do(q{ + INSERT IGNORE INTO `systempreferences` + (`variable`, `value`, `options`, `explanation`, `type`) + VALUES + ('AccessControlAllowOrigin', '', NULL, 'Set the Access-Control-Allow-Origin header to the specified value', 'Free'); + }); + + SetVersion( $DBversion ); + print "Upgrade to $DBversion done (Bug 24369 - Add CORS support to Koha)\n"; +} + # 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/'; -- 1.7.2.5