Bug 24369: DBRev 19.12.00.036
authorMartin Renvoize <martin.renvoize@ptfs-europe.com>
Thu, 5 Mar 2020 13:01:22 +0000 (13:01 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Thu, 5 Mar 2020 13:01:54 +0000 (13:01 +0000)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Koha.pm
installer/data/mysql/atomicupdate/bug_24369_CORS.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index c9b2003..eca34fb 100644 (file)
--- 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 (file)
index e746319..0000000
+++ /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";
-}
index 33e18f2..02beaaa 100755 (executable)
@@ -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/';