Bug 5343: Increment version number
authorJared Camins-Esakov <jcamins@cpbibliography.com>
Sat, 23 Mar 2013 03:56:51 +0000 (23:56 -0400)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Sat, 23 Mar 2013 03:56:51 +0000 (23:56 -0400)
Database update for bug 5343 has been given version 3.11.00.116

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index c8947c4..a01be2b 100755 (executable)
@@ -6984,8 +6984,8 @@ if ( CheckVersion($DBversion) ) {
     SetVersion ($DBversion);
 }
 
-$DBversion = "3.11.00.XXX";
-if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+$DBversion = "3.11.00.116";
+if ( CheckVersion($DBversion) ) {
     $dbh->do(q{ALTER TABLE aqorders DROP COLUMN serialid;});
     $dbh->do(q{ALTER TABLE aqorders DROP COLUMN subscription;});
     $dbh->do(q{ALTER TABLE aqorders ADD COLUMN subscriptionid INT(11) DEFAULT NULL;});
index 40292c1..1d37e96 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.11.00.115';
+    our $VERSION = '3.11.00.116';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install