Bug 7249 BDRev number
authorPaul Poulain <paul.poulain@biblibre.com>
Fri, 11 May 2012 08:58:43 +0000 (10:58 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 11 May 2012 08:58:43 +0000 (10:58 +0200)
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9d0171b..035e1e6 100755 (executable)
@@ -5219,7 +5219,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = "3.09.00.XXX";
+$DBversion = "3.09.00.002";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("ALTER TABLE saved_sql
         ADD (
@@ -5232,7 +5232,7 @@ saved_reports table.)\n";
     SetVersion($DBversion);
 }
 
-$DBversion = "3.09.00.XXX";
+$DBversion = "3.09.00.003";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('SvcMaxReportRows','10','Maximum number of rows to return via the report web service.',NULL,'Integer');");
     print "Upgrade to $DBversion done (Added SvcMaxReportRows syspref)\n";
index aa08729..c69276d 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.001';
+    our $VERSION = '3.09.00.003';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install