From 59eee732c5e0db9ff3d89c5c0b0c56a23b9344b0 Mon Sep 17 00:00:00 2001 From: Paul Poulain Date: Wed, 3 Aug 2011 16:06:43 +0200 Subject: [PATCH 3/3] Bug-5429 Setting version number Signed-off-by: Paul Poulain --- installer/data/mysql/updatedatabase.pl | 2 +- kohaversion.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 2a1fca1..b912c2c 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -4370,7 +4370,7 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) { SetVersion($DBversion); } -$DBversion = "3.05.00.XXX"; +$DBversion = "3.05.00.006"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do("INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES('OpenLibraryCovers',0,'If ON Openlibrary book covers will be show',NULL,'YesNo');"); print "Upgrade to $DBversion done (Add syspref OpenLibraryCovers)\n"; diff --git a/kohaversion.pl b/kohaversion.pl index 00bdbec..6624bfd 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.05.00.004'; + our $VERSION = '3.05.00.006'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 1.7.4.1