assigned typo fixes to DBrev 051
authorGalen Charlton <gmcharlt@gmail.com>
Mon, 24 Aug 2009 00:35:04 +0000 (20:35 -0400)
committerGalen Charlton <gmcharlt@gmail.com>
Mon, 24 Aug 2009 00:37:05 +0000 (20:37 -0400)
Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 9afd979..6b7a49e 100755 (executable)
@@ -2581,13 +2581,13 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
     print "Upgrade to $DBversion done (bug 1934: Add OPACSearchForTitleIn syspref)\n";
 }
 
-$DBversion = '3.01.00.XXX';
-     if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
-     $dbh->do("UPDATE systempreferences SET explanation='Fine limit above which user cannot renew books via OPAC' WHERE variable='OPACFineNoRenewals';");
-     $dbh->do("UPDATE systempreferences SET explanation='If set to ON, a clear screen button will appear on the circulation page.' WHERE variable='DisplayClearScreenButton';");
-     SetVersion ($DBversion);
-     print "Upgrade to $DBversion done (fixed typos in new sysprefs)\n";
-     }
+$DBversion = '3.01.00.051';
+if (C4::Context->preference("Version") < TransformToNum($DBversion)) {
+    $dbh->do("UPDATE systempreferences SET explanation='Fine limit above which user cannot renew books via OPAC' WHERE variable='OPACFineNoRenewals';");
+    $dbh->do("UPDATE systempreferences SET explanation='If set to ON, a clear screen button will appear on the circulation page.' WHERE variable='DisplayClearScreenButton';");
+    SetVersion ($DBversion);
+    print "Upgrade to $DBversion done (fixed typos in new sysprefs)\n";
+}
 
 =item DropAllForeignKeys($table)
 
index e9a5230..91e55af 100644 (file)
@@ -10,7 +10,7 @@
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.01.00.050';
+    our $VERSION = '3.01.00.051';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install