]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance...
authorjocuri%softhome.net <>
Tue, 14 Dec 2004 09:50:33 +0000 (09:50 +0000)
committerjocuri%softhome.net <>
Tue, 14 Dec 2004 09:50:33 +0000 (09:50 +0000)
checksetup.pl

index 35e7f2d39945ce02fe1cfa0769ac4e26f339c9b5..1052d8f02afc603396ddcabf8296634b9989e94e 100755 (executable)
@@ -4097,11 +4097,11 @@ if (!$series_exists) {
                 # We need to delete in case the text file had duplicate entries
                 # in it.
                 $deletesth->execute($seriesids{$field},
-                                    $dbh->quote($date));
+                                    $date);
                          
                 # We prepared this above
                 $seriesdatasth->execute($seriesids{$field},
-                                        $dbh->quote($date)
+                                        $date
                                         $fielddata{$date} || 0);
             }
         }