summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjocuri%softhome.net <>2004-11-05 17:53:36 +0100
committerjocuri%softhome.net <>2004-11-05 17:53:36 +0100
commite18c94c1e359e1eac4d5db0db28a57a59ab36a97 (patch)
tree9e807efb6768dd3924a21cf5160ce8d4108dc459 /checksetup.pl
parent2b1740e6482aa98f5057b1daa5388b24f5f8e5a3 (diff)
downloadbugzilla-e18c94c1e359e1eac4d5db0db28a57a59ab36a97.tar.gz
bugzilla-e18c94c1e359e1eac4d5db0db28a57a59ab36a97.tar.xz
Patch for bug 267543: Checksetup.pl should contain proper spacing in my$sth... statement; r=justdave, a=justdave.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 0f5b84afa..710140191 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -3930,7 +3930,7 @@ if (!$series_exists) {
require Bugzilla::Series;
# We prepare the handle to insert the series data
- my$seriesdatasth = $dbh->prepare("INSERT INTO series_data " .
+ my $seriesdatasth = $dbh->prepare("INSERT INTO series_data " .
"(series_id, series_date, series_value) " .
"VALUES (?, ?, ?)");