diff options
author | tara%tequilarista.org <> | 2000-05-18 06:29:31 +0200 |
---|---|---|
committer | tara%tequilarista.org <> | 2000-05-18 06:29:31 +0200 |
commit | 10c004c5600e0806cf15d72c902375c158f42e87 (patch) | |
tree | d56e790af08a808b2d078dcba9707bc4ec9eff1c /post_bug.cgi | |
parent | 9d750db320abff4b4c712da9e706f38ecc0807b4 (diff) | |
download | bugzilla-10c004c5600e0806cf15d72c902375c158f42e87.tar.gz bugzilla-10c004c5600e0806cf15d72c902375c158f42e87.tar.xz |
Making all system calls use paramter arguments
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 5695e5f0c..3f933e2d2 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -229,7 +229,7 @@ foreach my $person (keys %ccids) { } print "<TABLE BORDER=1><TD><H2>Bug $id posted</H2>\n"; -system("./processmail $id $::COOKIE{'Bugzilla_login'}"); +system("./processmail", $id, $::COOKIE{'Bugzilla_login'}); print "<TD><A HREF=\"show_bug.cgi?id=$id\">Back To BUG# $id</A></TABLE>\n"; print "<BR><A HREF=\"createattachment.cgi?id=$id\">Attach a file to this bug</a>\n"; |