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
e86587aa
Commit
e86587aa
authored
Jan 15, 2003
by
jouni%heikniemi.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 148093: editmilestones.cgi shows 'xyzzy' as product bug count. r=bbaetz, a=justdave
parent
3e7841d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
editmilestones.cgi
editmilestones.cgi
+2
-5
No files found.
editmilestones.cgi
View file @
e86587aa
...
...
@@ -182,23 +182,20 @@ if ($milestone) {
unless
(
$product
)
{
PutHeader
(
"Select product"
);
SendSQL
(
"SELECT products.name,products.description
,'xyzzy'
SendSQL
(
"SELECT products.name,products.description
FROM products
GROUP BY products.name
ORDER BY products.name"
);
print
"<TABLE BORDER=1 CELLPADDING=4 CELLSPACING=0><TR BGCOLOR=\"#6666FF\">\n"
;
print
" <TH ALIGN=\"left\">Edit milestones of ...</TH>\n"
;
print
" <TH ALIGN=\"left\">Description</TH>\n"
;
print
" <TH ALIGN=\"left\">Bugs</TH>\n"
;
print
"</TR>"
;
while
(
MoreSQLData
()
)
{
my
(
$product
,
$description
,
$bugs
)
=
FetchSQLData
();
my
(
$product
,
$description
)
=
FetchSQLData
();
$description
||=
"<FONT COLOR=\"red\">missing</FONT>"
;
$bugs
||=
"none"
;
print
"<TR>\n"
;
print
" <TD VALIGN=\"top\"><A HREF=\"editmilestones.cgi?product="
,
url_quote
(
$product
),
"\"><B>$product</B></A></TD>\n"
;
print
" <TD VALIGN=\"top\">$description</TD>\n"
;
print
" <TD VALIGN=\"top\">$bugs</TD>\n"
;
}
print
"</TR></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