Commit 1ed8e4bd authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 273935: avoid double-quoting dates in series_data table; patch by…

Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance Baarda <vrb@novell.com>, r=vladd, a=justdave.
parent ae5e2f0d
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment