bug 7408 follow-up fixing trailing `
authorPaul Poulain <paul.poulain@biblibre.com>
Fri, 9 Mar 2012 15:28:38 +0000 (16:28 +0100)
committerPaul Poulain <paul.poulain@biblibre.com>
Fri, 9 Mar 2012 15:28:38 +0000 (16:28 +0100)
installer/data/mysql/updatedatabase.pl

index 2a7a1ac..b844560 100755 (executable)
@@ -4886,7 +4886,7 @@ Date due: <<issues.date_due>><br />
 
 $DBversion = "3.07.00.024";
 if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
-    $dbh->do("INSERT INTO systempreferences` (variable,value,options,explanation,type) VALUES ('ExpireReservesMaxPickUpDelayCharge', '0', NULL , 'If ExpireReservesMaxPickUpDelay is enabled, and this field has a non-zero value, than a borrower whose waiting hold has expired will be charged this amount.',  'free')");
+    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('ExpireReservesMaxPickUpDelayCharge', '0', NULL , 'If ExpireReservesMaxPickUpDelay is enabled, and this field has a non-zero value, than a borrower whose waiting hold has expired will be charged this amount.',  'free')");
     $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('ExpireReservesMaxPickUpDelay', '0', '', 'Enabling this allows holds to expire automatically if they have not been picked by within the time period specified in ReservesMaxPickUpDelay', 'YesNo')");
     print "Upgrade to $DBversion done (Added system preference ExpireReservesMaxPickUpDelay, system preference ExpireReservesMaxPickUpDelayCharge, add reseves.charge_if_expired)\n";
     SetVersion($DBversion);