Bug 11759: DBRev 3.21.00.038
authorTomas Cohen Arazi <tomascohen@theke.io>
Tue, 20 Oct 2015 13:27:01 +0000 (10:27 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 20 Oct 2015 13:46:54 +0000 (10:46 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha.pm
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index d4f5f8b..e1e43a0 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.21.00.037";
+$VERSION = "3.21.00.038";
 
 sub version {
     return $VERSION;
index c53b47f..3360de6 100755 (executable)
@@ -11120,7 +11120,7 @@ if ( CheckVersion($DBversion) ) {
    SetVersion($DBversion);
 }
 
-$DBversion = "3.21.00.XXX";
+$DBversion = "3.21.00.038";
 if ( CheckVersion($DBversion) ) {
     $dbh->do(q|
         INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
@@ -11130,7 +11130,7 @@ if ( CheckVersion($DBversion) ) {
         INSERT IGNORE INTO systempreferences ( variable, value, options, explanation, type )
         VALUES ('BatchCheckoutsValidCategories','',NULL,'Patron categories allowed to checkout in a batch','Free')
     |);
-    print "Upgrade to $DBversion done (Bug 11759: Add batch_checkouts system preference)\n";
+    print "Upgrade to $DBversion done (Bug 11759: Add the batch checkout feature)\n";
     SetVersion($DBversion);
 }