From: jocuri%softhome.net <> Date: Tue, 14 Dec 2004 09:50:33 +0000 (+0000) Subject: Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance... X-Git-Tag: bugzilla-2.19.2~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1ed8e4bd9fada1e3973cf32bc8be4c6c327ddb76;p=thirdparty%2Fbugzilla.git Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance Baarda , r=vladd, a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index 35e7f2d399..1052d8f02a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -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); } }