Commit 10c004c5 authored by tara%tequilarista.org's avatar tara%tequilarista.org

Making all system calls use paramter arguments

parent 9d750db3
...@@ -175,4 +175,4 @@ foreach my $cc (split(/,/, $::FORM{'cc'})) { ...@@ -175,4 +175,4 @@ foreach my $cc (split(/,/, $::FORM{'cc'})) {
} }
print "Created bugzilla bug $zillaid\n"; print "Created bugzilla bug $zillaid\n";
system("./processmail $zillaid"); system("./processmail", $zillaid);
...@@ -1668,7 +1668,7 @@ if ( CountIndexes('keywords') != 3 ) { ...@@ -1668,7 +1668,7 @@ if ( CountIndexes('keywords') != 3 ) {
# Final checks... # Final checks...
if ($regenerateshadow) { if ($regenerateshadow) {
print "Now regenerating the shadow database for all bugs.\n"; print "Now regenerating the shadow database for all bugs.\n";
system("./processmail regenerate"); system("./processmail", "regenerate");
} }
unlink "data/versioncache"; unlink "data/versioncache";
......
...@@ -106,7 +106,7 @@ What kind of file is this? ...@@ -106,7 +106,7 @@ What kind of file is this?
"Created an attachment (id=$attachid)\n$desc\n"); "Created an attachment (id=$attachid)\n$desc\n");
print "<TABLE BORDER=1><TD><H2>Attachment to bug $id created</H2>\n"; print "<TABLE BORDER=1><TD><H2>Attachment to bug $id created</H2>\n";
system("./processmail $id $::COOKIE{'Bugzilla_login'}"); system("./processmail", $id, $::COOKIE{'Bugzilla_login'});
print "<TD><A HREF=\"show_bug.cgi?id=$id\">Go Back to BUG# $id</A></TABLE>\n"; print "<TD><A HREF=\"show_bug.cgi?id=$id\">Go Back to BUG# $id</A></TABLE>\n";
} }
......
...@@ -73,7 +73,7 @@ WriteParams(); ...@@ -73,7 +73,7 @@ WriteParams();
unlink "data/versioncache"; unlink "data/versioncache";
print "<PRE>"; print "<PRE>";
system("./syncshadowdb -v"); system("./syncshadowdb", "-v");
print "</PRE>"; print "</PRE>";
print "OK, done.<p>\n"; print "OK, done.<p>\n";
......
...@@ -229,7 +229,7 @@ foreach my $person (keys %ccids) { ...@@ -229,7 +229,7 @@ foreach my $person (keys %ccids) {
} }
print "<TABLE BORDER=1><TD><H2>Bug $id posted</H2>\n"; 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 "<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"; print "<BR><A HREF=\"createattachment.cgi?id=$id\">Attach a file to this bug</a>\n";
......
...@@ -512,7 +512,7 @@ SWITCH: for ($::FORM{'knob'}) { ...@@ -512,7 +512,7 @@ SWITCH: for ($::FORM{'knob'}) {
$::FORM{'comment'} .= "\n\n*** This bug has been marked as a duplicate of $num ***"; $::FORM{'comment'} .= "\n\n*** This bug has been marked as a duplicate of $num ***";
print "<TABLE BORDER=1><TD><H2>Notation added to bug $num</H2>\n"; print "<TABLE BORDER=1><TD><H2>Notation added to bug $num</H2>\n";
system("./processmail $num $::FORM{'who'}"); system("./processmail", $num, $::FORM{'who'});
print "<TD><A HREF=\"show_bug.cgi?id=$num\">Go To BUG# $num</A></TABLE>\n"; print "<TD><A HREF=\"show_bug.cgi?id=$num\">Go To BUG# $num</A></TABLE>\n";
last SWITCH; last SWITCH;
...@@ -901,7 +901,7 @@ The changes made were: ...@@ -901,7 +901,7 @@ The changes made were:
foreach my $k (keys(%dependencychanged)) { foreach my $k (keys(%dependencychanged)) {
print "<TABLE BORDER=1><TD><H2>Checking for dependency changes on bug $k</H2>\n"; print "<TABLE BORDER=1><TD><H2>Checking for dependency changes on bug $k</H2>\n";
system("./processmail $k $::FORM{'who'}"); system("./processmail", $k, $::FORM{'who'});
print "<TD><A HREF=\"show_bug.cgi?id=$k\">Go To BUG# $k</A></TABLE>\n"; print "<TD><A HREF=\"show_bug.cgi?id=$k\">Go To BUG# $k</A></TABLE>\n";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment