Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance Baarda <vrb@novell.com>, r=vladd, a=justdave.

This commit is contained in:
jocuri%softhome.net 2004-12-14 01:50:33 +00:00
parent e224e150e4
commit b6d4d9a5eb

View File

@ -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);
}
}