From: jocuri%softhome.net <> Date: Fri, 5 Nov 2004 16:53:16 +0000 (+0000) Subject: Patch for bug 267543: Checksetup.pl should contain proper spacing in my$sth... statem... X-Git-Tag: bugzilla-2.18~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fd04a711f19ecd3b959a9a0086ea8cfbd1bd9e1;p=thirdparty%2Fbugzilla.git Patch for bug 267543: Checksetup.pl should contain proper spacing in my$sth... statement; r=justdave, a=justdave. --- diff --git a/checksetup.pl b/checksetup.pl index 28140058f4..fe33a97cf9 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -3826,7 +3826,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 (?, ?, ?)");