From 8f7189678d47bb0fc0298ca8191b30f280e5beda Mon Sep 17 00:00:00 2001 From: Jared Camins-Esakov Date: Thu, 21 Mar 2013 12:02:15 -0400 Subject: [PATCH] Bug 9403: Increment version number Database update for bug 9403 has been given version 3.11.00.109 --- installer/data/mysql/updatedatabase.pl | 15 ++++++++------- kohaversion.pl | 2 +- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 3c81eee439..8a6a5b8e2b 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -6557,13 +6557,6 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } -$DBversion = "3.11.00.XXX"; -if ( CheckVersion($DBversion) ) { - $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('DisplayIconsXSLT', '1', '', 'If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.', 'YesNo');"); - print "Upgrade to $DBversion done (Bug 9403: Add DisplayIconsXSLT)\n"; - SetVersion ($DBversion); -} - $DBversion = "3.11.00.104"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { print "Upgrade to $DBversion done (3.12-alpha2 release)\n"; @@ -6678,6 +6671,14 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.11.00.109"; +if ( CheckVersion($DBversion) ) { + $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES('DisplayIconsXSLT', '1', '', 'If ON, displays the format, audience, and material type icons in XSLT MARC21 results and detail pages.', 'YesNo');"); + print "Upgrade to $DBversion done (Bug 9403: Add DisplayIconsXSLT)\n"; + SetVersion ($DBversion); +} + + =head1 FUNCTIONS diff --git a/kohaversion.pl b/kohaversion.pl index d9bdb74bab..fc5fbd84be 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.11.00.108'; + our $VERSION = '3.11.00.109'; # version needs to be set this way # so that it can be picked up by Makefile.PL # during install -- 2.20.1