Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
10c004c5
Commit
10c004c5
authored
May 18, 2000
by
tara%tequilarista.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Making all system calls use paramter arguments
parent
9d750db3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
backdoor.cgi
backdoor.cgi
+1
-1
checksetup.pl
checksetup.pl
+1
-1
createattachment.cgi
createattachment.cgi
+1
-1
doeditparams.cgi
doeditparams.cgi
+1
-1
post_bug.cgi
post_bug.cgi
+1
-1
process_bug.cgi
process_bug.cgi
+2
-2
No files found.
backdoor.cgi
View file @
10c004c5
...
...
@@ -175,4 +175,4 @@ foreach my $cc (split(/,/, $::FORM{'cc'})) {
}
print
"Created bugzilla bug $zillaid\n"
;
system
(
"./processmail
$zillaid"
);
system
(
"./processmail
"
,
$zillaid
);
checksetup.pl
View file @
10c004c5
...
...
@@ -1668,7 +1668,7 @@ if ( CountIndexes('keywords') != 3 ) {
# Final checks...
if
(
$regenerateshadow
)
{
print
"Now regenerating the shadow database for all bugs.\n"
;
system
(
"./processmail
regenerate"
);
system
(
"./processmail
"
,
"
regenerate"
);
}
unlink
"data/versioncache"
;
...
...
createattachment.cgi
View file @
10c004c5
...
...
@@ -106,7 +106,7 @@ What kind of file is this?
"Created an attachment (id=$attachid)\n$desc\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"
;
}
...
...
doeditparams.cgi
View file @
10c004c5
...
...
@@ -73,7 +73,7 @@ WriteParams();
unlink
"data/versioncache"
;
print
"<PRE>"
;
system
(
"./syncshadowdb
-v"
);
system
(
"./syncshadowdb
"
,
"
-v"
);
print
"</PRE>"
;
print
"OK, done.<p>\n"
;
...
...
post_bug.cgi
View file @
10c004c5
...
...
@@ -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"
;
...
...
process_bug.cgi
View file @
10c004c5
...
...
@@ -512,7 +512,7 @@ SWITCH: for ($::FORM{'knob'}) {
$::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"
;
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"
;
last
SWITCH
;
...
...
@@ -901,7 +901,7 @@ The changes made were:
foreach
my
$k
(
keys
(
%
dependencychanged
))
{
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"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment