From bf98eabe50b477e0ed7c71d8b408fd1f710cbd07 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Tue, 22 Mar 2011 21:13:21 +1300 Subject: [PATCH] Bumping database version --- installer/data/mysql/updatedatabase.pl | 4 ++-- kohaversion.pl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index a478234af5..084fad46b9 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4090,7 +4090,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } -$DBversion = '3.03.00.027'; #FIXME +$DBversion = '3.03.00.027'; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('displayFacetCount', '0', NULL, NULL, 'YesNo')"); $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('maxRecordsForFacets', '20', NULL, NULL, 'Integer')"); @@ -4098,7 +4098,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion ($DBversion); } -$DBversion = "3.03.00.XXX"; +$DBversion = "3.03.00.028"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('FacetLabelTruncationLength', 20, 'Truncate facets length to','','free')"); print "Upgrade to $DBversion done (Add FacetLabelTruncationLength syspref to control facets displayed length)\n"; diff --git a/kohaversion.pl b/kohaversion.pl index 83304597a1..aadafd539d 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts : use strict; sub kohaversion { - our $VERSION = '3.03.00.XXX'; + our $VERSION = '3.03.00.028'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.39.5