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 /backdoor.cgi | |
parent | 9d750db320abff4b4c712da9e706f38ecc0807b4 (diff) | |
download | bugzilla-10c004c5600e0806cf15d72c902375c158f42e87.tar.gz bugzilla-10c004c5600e0806cf15d72c902375c158f42e87.tar.xz |
Making all system calls use paramter arguments
Diffstat (limited to 'backdoor.cgi')
-rwxr-xr-x | backdoor.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backdoor.cgi b/backdoor.cgi index b4848a1bb..f46cb6759 100755 --- a/backdoor.cgi +++ b/backdoor.cgi @@ -175,4 +175,4 @@ foreach my $cc (split(/,/, $::FORM{'cc'})) { } print "Created bugzilla bug $zillaid\n"; -system("./processmail $zillaid"); +system("./processmail", $zillaid); |