Bug 8585 follow-up DBRev number
authorPaul Poulain <paul.poulain@biblibre.com>
Wed, 3 Oct 2012 13:19:35 +0000 (15:19 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Wed, 3 Oct 2012 13:19:35 +0000 (15:19 +0200)
installer/data/mysql/sysprefs.sql
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 0798834..178ff40 100644 (file)
@@ -385,3 +385,4 @@ INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) V
 INSERT INTO systempreferences (variable,value,explanation,type) VALUES('OPACdidyoumean',NULL,'Did you mean? configuration for the OPAC. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free');
 INSERT INTO systempreferences (variable,value,explanation,type) VALUES('INTRAdidyoumean',NULL,'Did you mean? configuration for the Intranet. Do not change, as this is controlled by /cgi-bin/koha/admin/didyoumean.pl.','Free');
 INSERT INTO systempreferences (variable, value, options, explanation, type) VALUES ('BlockReturnOfWithdrawnItems', '1', '0', 'If enabled, items that are marked as withdrawn cannot be returned.', 'YesNo');
+INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('HoldsToPullStartDate','2','Set the default start date for the Holds to pull list to this many days ago',NULL,'Integer');
index 63b8803..fb389da 100755 (executable)
@@ -5995,7 +5995,7 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     SetVersion($DBversion);
 }
 
-$DBversion = "XXX";
+$DBversion = "3.09.00.060";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('HoldsToPullStartDate','2','Set the default start date for the Holds to pull list to this many days ago',NULL,'Integer')");
     print "Upgrade to $DBversion done (Added HoldsToPullStartDate syspref)\n";
index 01ea8c1..248861c 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.059';
+    our $VERSION = '3.09.00.060';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install