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
c364f865
Commit
c364f865
authored
Sep 28, 2001
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug #53612: The milestone URL appears correctly when deleting a product or a component.
Patch by Jake <jake@acutex.net>. r=gerv@mozilla.org,myk@mozilla.org
parent
8d24bc78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
editcomponents.cgi
editcomponents.cgi
+3
-3
editproducts.cgi
editproducts.cgi
+3
-1
No files found.
editcomponents.cgi
View file @
c364f865
...
...
@@ -487,9 +487,9 @@ if ($action eq 'del') {
my
$initialowner
=
$initialownerid
?
DBID_to_name
(
$initialownerid
)
:
"<FONT COLOR=\"red\">missing</FONT>"
;
my
$initialqacontact
=
$initialqacontactid
?
DBID_to_name
(
$initialqacontactid
)
:
"<FONT COLOR=\"red\">missing</FONT>"
;
my
$milestonelink
=
$milestoneurl
?
"<A HREF=\"$milestoneurl\">$milestoneurl</A>"
:
"<FONT COLOR=\"red\">missing</FONT>"
;
$pdesc
||=
"<FONT COLOR=\"red\">missing</FONT>"
;
$milestoneurl
||=
"<FONT COLOR=\"red\">missing</FONT>"
;
$disallownew
=
$disallownew
?
'closed'
:
'open'
;
$cdesc
||=
"<FONT COLOR=\"red\">missing</FONT>"
;
...
...
@@ -530,7 +530,7 @@ if ($action eq 'del') {
if
(
Param
(
'usetargetmilestone'
))
{
print
"</TR><TR>\n"
;
print
" <TD VALIGN=\"top\">Milestone URL:</TD>\n"
;
print
" <TD VALIGN=\"top\">
<A HREF=\"$milestoneurl\">$milestoneurl</A>
</TD>\n"
;
print
" <TD VALIGN=\"top\">
$milestonelink
</TD>\n"
;
}
print
"</TR><TR>\n"
;
...
...
editproducts.cgi
View file @
c364f865
...
...
@@ -418,6 +418,8 @@ if ($action eq 'del') {
FROM products
WHERE product="
.
SqlQuote
(
$product
));
my
(
$description
,
$milestoneurl
,
$disallownew
)
=
FetchSQLData
();
my
$milestonelink
=
$milestoneurl
?
"<a href=\"$milestoneurl\">$milestoneurl</a>"
:
"<font color=\"red\">missing</font>"
;
$description
||=
"<FONT COLOR=\"red\">description missing</FONT>"
;
$disallownew
=
$disallownew
?
'closed'
:
'open'
;
...
...
@@ -437,7 +439,7 @@ if ($action eq 'del') {
if
(
Param
(
'usetargetmilestone'
))
{
print
"</TR><TR>\n"
;
print
" <TD VALIGN=\"top\">Milestone URL:</TD>\n"
;
print
" <TD VALIGN=\"top\">
<A HREF=\"$milestoneurl\">$milestoneurl</A>
</TD>\n"
;
print
" <TD VALIGN=\"top\">
$milestonelink
</TD>\n"
;
}
# Added -JMR, 2/16/00
...
...
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