Bug 7412 follow-up
authorPaul Poulain <paul.poulain@biblibre.com>
Mon, 3 Sep 2012 15:03:09 +0000 (17:03 +0200)
committerPaul Poulain <paul.poulain@biblibre.com>
Mon, 3 Sep 2012 15:03:09 +0000 (17:03 +0200)
  * DBRev number
  * removing useless `` in table name

installer/data/mysql/updatedatabase.pl
kohaversion.pl

index 03702bf..c6b6063 100755 (executable)
@@ -5675,7 +5675,7 @@ if(C4::Context->preference("Version") < TransformToNum($DBversion) ) {
 $DBversion = "3.09.00.035";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
     $dbh->do("
-    INSERT IGNORE INTO `systempreferences` (variable,value,explanation,options,type) VALUES('PrefillItem','0','When a new item is added, should it be prefilled with last created item values?','','YesNo');
+    INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('PrefillItem','0','When a new item is added, should it be prefilled with last created item values?','','YesNo');
     ");
     $dbh->do(
     "INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('SubfieldsToUseWhenPrefill','','Define a list of subfields to use when prefilling items (separated by space)','','Free');
index b58966b..9b09a7e 100644 (file)
@@ -16,7 +16,7 @@ the kohaversion is divided in 4 parts :
 use strict;
 
 sub kohaversion {
-    our $VERSION = '3.09.00.034';
+    our $VERSION = '3.09.00.035';
     # version needs to be set this way
     # so that it can be picked up by Makefile.PL
     # during install