From fe52fe9957ce904a57f856716046276e8db72697 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Thu, 7 Jun 2001 04:17:39 +0000 Subject: Fix for bug 21253: removing all single-parameter system() calls from Bugzilla Patch by Dave Miller r= tara@tequilarista.org --- process_bug.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'process_bug.cgi') diff --git a/process_bug.cgi b/process_bug.cgi index b2327b0fd..81f6846b8 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -993,7 +993,7 @@ The changes made were: print "

Changes to bug $id submitted

\n"; SendSQL("unlock tables"); - my @ARGLIST = ("./processmail"); + my @ARGLIST = (); if ( $removedCcString ne "" ) { push @ARGLIST, ("-forcecc", $removedCcString); } @@ -1004,7 +1004,7 @@ The changes made were: push @ARGLIST, ( "-forceqacontact", $origQaContact); } push @ARGLIST, ($id, $::FORM{'who'}); - system @ARGLIST; + system ("./processmail",@ARGLIST); print "
Back To BUG# $id
\n"; -- cgit v1.2.3-24-g4f1b