summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-12-14 10:50:33 +0100
committerjocuri%softhome.net <>2004-12-14 10:50:33 +0100
commit1ed8e4bd9fada1e3973cf32bc8be4c6c327ddb76 (patch)
tree96bf3762f4a646ca4c928f5b25558e0cd948fc4c /checksetup.pl
parentae5e2f0d1b041828593505cc8aa93aee53665975 (diff)
downloadbugzilla-1ed8e4bd9fada1e3973cf32bc8be4c6c327ddb76.tar.gz
bugzilla-1ed8e4bd9fada1e3973cf32bc8be4c6c327ddb76.tar.xz
Patch for bug 273935: avoid double-quoting dates in series_data table; patch by Vance Baarda <vrb@novell.com>, r=vladd, a=justdave.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 35e7f2d39..1052d8f02 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);
}
}