Bug 13322: DBRev 3.19.00.026
authorTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 20 Apr 2015 14:22:22 +0000 (11:22 -0300)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 20 Apr 2015 14:22:22 +0000 (11:22 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 07c3f08..42ccf9b 100755 (executable)
@@ -10035,21 +10035,7 @@ if ( CheckVersion($DBversion) ) {
     SetVersion ($DBversion);
 }
 
-# DEVELOPER PROCESS, search for anything to execute in the db_update directory
-# 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/';
-opendir( my $dirh, $update_dir );
-while ( my $file = readdir $dirh ) {
-    next unless $file =~ /\.sql$/;    # skip non SQL files
-    print "DEV atomic update : $file \n";
-    my $installer = C4::Installer->new();
-    my $rv = $installer->load_sql( $update_dir . $file ) ? 0 : 1;
-}
-
-
-$DBversion = "3.19.00.XXX";
+$DBversion = "3.19.00.026";
 if(CheckVersion($DBversion)) {
     if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
     $dbh->do(q{
@@ -10156,6 +10142,18 @@ if(CheckVersion($DBversion)) {
     SetVersion($DBversion);
 }
 
+# DEVELOPER PROCESS, search for anything to execute in the db_update directory
+# 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/';
+opendir( my $dirh, $update_dir );
+while ( my $file = readdir $dirh ) {
+    next unless $file =~ /\.sql$/;    # skip non SQL files
+    print "DEV atomic update : $file \n";
+    my $installer = C4::Installer->new();
+    my $rv = $installer->load_sql( $update_dir . $file ) ? 0 : 1;
+}
 
 =head1 FUNCTIONS
 
index d2761f3..96da662 100644 (file)
@@ -17,7 +17,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.19.00.025';
+    our $VERSION = '3.19.00.026';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install