diff options
author | bbaetz%student.usyd.edu.au <> | 2002-09-03 13:39:06 +0000 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-09-03 13:39:06 +0000 |
commit | fe21ebf318771435a28957db1c982492b6a0f92a (patch) | |
tree | de96cc008143e2c23438f51939497220c01bcdeb | |
parent | Bug 165221: Apostrophes not properly handled during account creation. r=joel,... (diff) | |
download | bugzilla-fe21ebf318771435a28957db1c982492b6a0f92a.tar.gz bugzilla-fe21ebf318771435a28957db1c982492b6a0f92a.tar.bz2 bugzilla-fe21ebf318771435a28957db1c982492b6a0f92a.zip |
bug 163024 - bugzilla_email_append calls processmail incorrectly
r=joel, preed
-rwxr-xr-x | contrib/bugzilla_email_append.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bugzilla_email_append.pl b/contrib/bugzilla_email_append.pl index 826b49198..5fbd00824 100755 --- a/contrib/bugzilla_email_append.pl +++ b/contrib/bugzilla_email_append.pl @@ -117,7 +117,7 @@ my $Body = "Subject: " . $Subject . "\n" . $Comment; my $long_desc_query = "INSERT INTO longdescs SET bug_id=$found_id, who=$userid, bug_when=NOW(), thetext=" . SqlQuote($Body) . ";"; SendSQL($long_desc_query); -system("cd .. ; ./processmail $found_id '$SenderShort'"); +system("./processmail", $found_id, $SenderShort); sub DealWithError { my ($reason) = @_; |