Bug 15311 - DBRev 3.23.00.030
authorKyle M Hall <kyle@bywatersolutions.com>
Fri, 26 Feb 2016 14:20:39 +0000 (14:20 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 26 Feb 2016 14:20:39 +0000 (14:20 +0000)
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 5682456..c580aa7 100644 (file)
--- 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;
index 47b791d..041e39b 100755 (executable)
@@ -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);
 }