From 32b49524c25b854296f93d82c2b74de7b01551c6 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Tue, 14 Dec 2004 09:49:04 +0000 Subject: [PATCH] Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance Baarda , r=vladd, a=justdave. --- checksetup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/checksetup.pl b/checksetup.pl index 8e09bdfe56..46bf36ae2e 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -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); } } -- 2.47.3