Bug 9403: Increment version number

Database update for bug 9403 has been given version 3.11.00.109
This commit is contained in:
Jared Camins-Esakov 2013-03-21 12:02:15 -04:00
parent e636bed728
commit 8f7189678d
2 changed files with 9 additions and 8 deletions

View file

@ -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

View file

@ -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