From e06aa3249692667074a4d7110920cbe9b232dd64 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 26 Feb 2016 14:20:39 +0000 Subject: [PATCH] Bug 15311 - DBRev 3.23.00.030 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- installer/data/mysql/updatedatabase.pl | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Koha.pm b/Koha.pm index 5682456df7..c580aa703d 100644 --- a/Koha.pm +++ b/Koha.pm @@ -29,7 +29,7 @@ use vars qw{ $VERSION }; # - #4 : the developer version. The 4th number is the database subversion. # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. -$VERSION = "3.23.00.029"; +$VERSION = "3.23.00.030"; sub version { return $VERSION; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 47b791d5af..041e39bd61 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -11870,12 +11870,13 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } -$DBversion = "3.23.00.XXX"; +$DBversion = "3.23.00.030"; if(CheckVersion($DBversion)) { $dbh->do(q{ INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('OpacMaintenanceNotice','','','A user-defined block of HTML to appear on screen when OpacMaintenace is enabled','Textarea') }); + print "Upgrade to $DBversion done (Bug 15311: Let libraries set text to display when OpacMaintenance = on)\n"; SetVersion($DBversion); } -- 2.39.5