Bug 23391: DBRev 20.06.00.009
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 20 Jul 2020 14:15:20 +0000 (16:15 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 20 Jul 2020 15:45:30 +0000 (17:45 +0200)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>

Koha.pm
installer/data/mysql/atomicupdate/bug23391-hide-finished-ill-requests.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index a2d1cae..3d576bf 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 = "20.06.00.008";
+$VERSION = "20.06.00.009";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug23391-hide-finished-ill-requests.perl b/installer/data/mysql/atomicupdate/bug23391-hide-finished-ill-requests.perl
deleted file mode 100644 (file)
index 2a7927d..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-$DBversion = 'XXX';
-if( CheckVersion( $DBversion ) ) {
-    $dbh->do( q{
-            INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
-            VALUES ('ILLHiddenRequestStatuses',NULL,NULL,'ILL statuses that are considered finished and should not be displayed in the ILL module','multiple')
-    });
-
-    SetVersion( $DBversion );
-    print "Upgrade to $DBversion done (Bug 23391 - Hide finished ILL requests)\n";
-}
index 70dc80e..d2e18f7 100755 (executable)
@@ -22336,6 +22336,16 @@ if( CheckVersion( $DBversion ) ) {
     NewVersion( $DBversion, 23148, "Replace Bridge icons with transparent PNG files" );
 }
 
+$DBversion = '20.06.00.009';
+if( CheckVersion( $DBversion ) ) {
+    $dbh->do( q{
+            INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type)
+            VALUES ('ILLHiddenRequestStatuses',NULL,NULL,'ILL statuses that are considered finished and should not be displayed in the ILL module','multiple')
+    });
+
+    NewVersion( $DBversion, 23391, "Hide finished ILL requests" );
+}
+
 # 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/';