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
365c07a3
Commit
365c07a3
authored
Dec 11, 1998
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Old values for the column-header-cookie could cause problems when trying to…
Old values for the column-header-cookie could cause problems when trying to tweak several bugs at once.
parent
83f520e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
buglist.cgi
buglist.cgi
+5
-2
No files found.
buglist.cgi
View file @
365c07a3
...
...
@@ -339,7 +339,7 @@ my $tablestart = "<TABLE CELLSPACING=0 CELLPADDING=2>
foreach
my
$c
(
@collist
)
{
if
(
exists
$::needquote
{
$c
})
{
if
(
$::needquote
{
$c
})
{
$tablestart
.=
"<TH WIDTH=100% valig
h
=left>"
;
$tablestart
.=
"<TH WIDTH=100% valig
n
=left>"
;
}
else
{
$tablestart
.=
"<TH valign=left>"
;
}
...
...
@@ -377,10 +377,13 @@ while (@row = FetchSQLData()) {
pnl
"<A HREF=\"show_bug.cgi?id=$bug_id\">"
;
pnl
"$bug_id</A> "
;
foreach
my
$c
(
@collist
)
{
if
(
!
exists
$::needquote
{
$c
})
{
next
;
}
my
$value
=
shift
@row
;
my
$nowrap
=
""
;
if
(
exists
$::needquote
{
$c
}
&&
$::needquote
{
$c
})
{
if
(
$::needquote
{
$c
})
{
$value
=
html_quote
(
$value
);
}
else
{
$value
=
"<nobr>$value</nobr>"
;
...
...
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