From: jocuri%softhome.net <> Date: Fri, 5 Nov 2004 16:53:36 +0000 (+0000) Subject: Patch for bug 267543: Checksetup.pl should contain proper spacing in my$sth... statem... X-Git-Tag: bugzilla-2.19.2~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e18c94c1e359e1eac4d5db0db28a57a59ab36a97;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 0f5b84afa0..710140191e 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 (?, ?, ?)");