]> 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:49:04 +0000 (09:49 +0000)
committerjocuri%softhome.net <>
Tue, 14 Dec 2004 09:49:04 +0000 (09:49 +0000)
checksetup.pl

index 8e09bdfe569c8ddf10a3546fdf4ca56eec4afb5a..46bf36ae2e2ff071005ff270d716eff583af0201 100755 (executable)
@@ -3990,11 +3990,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);
             }
         }