Database update for 3.8.17 release
authorChris Hall <followingthepath@gmail.com>
Sat, 24 Aug 2013 03:26:39 +0000 (15:26 +1200)
committerChris Hall <followingthepath@gmail.com>
Sat, 24 Aug 2013 03:26:39 +0000 (15:26 +1200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9fe10a5..41893bc 100755 (executable)
@@ -5393,6 +5393,12 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.08.17.000";
+if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
+    print "Upgrade to $DBversion done (3.8.17 release)\n";
+    SetVersion($DBversion);
+}
+
 =head1 FUNCTIONS
 
 =head2 TableExists($table)
index 8258d50..0ca7f9c 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.08.16.002';
+    our $VERSION = '3.08.17.000';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install