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
96cbf32c
Commit
96cbf32c
authored
Jan 25, 2001
by
dave%intrec.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-fixing bug 30694. part of the original patch got left out.
parent
31c7bd50
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
bug_form.pl
bug_form.pl
+2
-5
processmail
processmail
+1
-1
No files found.
bug_form.pl
View file @
96cbf32c
...
@@ -321,11 +321,8 @@ sub EmitDependList {
...
@@ -321,11 +321,8 @@ sub EmitDependList {
my
(
$desc
,
$myfield
,
$targetfield
)
=
(
@_
);
my
(
$desc
,
$myfield
,
$targetfield
)
=
(
@_
);
print
"<th align=right>$desc:</th><td>"
;
print
"<th align=right>$desc:</th><td>"
;
my
@list
;
my
@list
;
SendSQL
(
"select dependencies.$targetfield
SendSQL
(
"select $targetfield from dependencies where
from dependencies, bugs
$myfield = $id order by $targetfield"
);
where dependencies.$myfield = $id
and bugs.bug_id = dependencies.$targetfield
order by dependencies.$targetfield"
);
while
(
MoreSQLData
())
{
while
(
MoreSQLData
())
{
my
(
$i
)
=
(
FetchSQLData
());
my
(
$i
)
=
(
FetchSQLData
());
push
(
@list
,
$i
);
push
(
@list
,
$i
);
...
...
processmail
View file @
96cbf32c
...
@@ -141,7 +141,7 @@ sub DescDependencies {
...
@@ -141,7 +141,7 @@ sub DescDependencies {
my
(
$bug_status
,
$resolution
)
=
(
FetchSQLData
());
my
(
$bug_status
,
$resolution
)
=
(
FetchSQLData
());
my
$desc
;
my
$desc
;
if
(
$bug_status
eq
"NEW"
||
$bug_status
eq
"ASSIGNED"
||
if
(
$bug_status
eq
"NEW"
||
$bug_status
eq
"ASSIGNED"
||
$bug_status
eq
"REOPENED"
)
{
$bug_status
eq
"REOPENED"
||
$bug_status
eq
"UNCONFIRMED"
)
{
$desc
=
""
;
$desc
=
""
;
}
else
{
}
else
{
$desc
=
"[$resolution]"
;
$desc
=
"[$resolution]"
;
...
...
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