From: Paul Poulain Date: Mon, 24 Sep 2012 19:32:48 +0000 (+0200) Subject: Bug 5356 follow-up DBRev number X-Git-Tag: v3.10.01~321 X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=commitdiff_plain;h=0ccb53477aea06ae1e8865cf81be962578437c16;p=srvgit Bug 5356 follow-up DBRev number --- diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 9444577f34..eb45fb2440 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -5974,11 +5974,11 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { } -$DBversion = "3.09.00.XXX"; +$DBversion = "3.09.00.057"; if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { $dbh->do("ALTER TABLE aqbasket ADD deliveryplace VARCHAR(10) default NULL AFTER basketgroupid;"); $dbh->do("ALTER TABLE aqbasket ADD billingplace VARCHAR(10) default NULL AFTER deliveryplace;"); - print "Upgrade to $DBversion done (Added billingplace, deliveryplace to the aqbasket table)\n"; + print "Upgrade to $DBversion done (Bug 5356: Added billingplace, deliveryplace to the aqbasket table)\n"; SetVersion($DBversion); } diff --git a/kohaversion.pl b/kohaversion.pl index 001f59d27a..1eefc92517 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.09.00.056'; + our $VERSION = '3.09.00.057'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install