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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
aae01c43
Commit
aae01c43
authored
Jun 03, 2000
by
tara%tequilarista.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Landing fix for keyword column handling--bug #39647
parent
2a5ba50f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
buglist.cgi
buglist.cgi
+6
-3
No files found.
buglist.cgi
View file @
aae01c43
...
...
@@ -810,7 +810,7 @@ DefCol("os", "substring(bugs.op_sys, 1, 4)", "OS", "bugs.op_sys");
DefCol
(
"target_milestone"
,
"bugs.target_milestone"
,
"TargetM"
,
"bugs.target_milestone"
);
DefCol
(
"votes"
,
"bugs.votes"
,
"Votes"
,
"bugs.votes desc"
);
DefCol
(
"keywords"
,
"bugs.keywords"
,
"Keywords"
,
"bugs.keywords"
);
DefCol
(
"keywords"
,
"bugs.keywords"
,
"Keywords"
,
"bugs.keywords"
,
5
);
my
@collist
;
if
(
defined
$::COOKIE
{
'COLUMNLIST'
})
{
...
...
@@ -978,8 +978,10 @@ my @th;
foreach
my
$c
(
@collist
)
{
if
(
exists
$::needquote
{
$c
})
{
my
$h
=
""
;
if
(
$::needquote
{
$c
}
)
{
if
(
$::needquote
{
$c
}
==
1
)
{
$h
.=
"<TH WIDTH=100%>"
;
}
elsif
(
$::needquote
{
$c
}
==
5
)
{
$h
.=
"<TH>"
;
}
else
{
$h
.=
"<TH>"
;
}
...
...
@@ -1099,11 +1101,12 @@ while (@row = FetchSQLData()) {
if
(
$c
eq
"owner"
)
{
$ownerhash
{
$value
}
=
1
;
}
if
(
$::needquote
{
$c
})
{
if
(
$::needquote
{
$c
}
||
$::needquote
{
$c
}
==
5
)
{
$value
=
html_quote
(
$value
);
}
else
{
$value
=
"<nobr>$value</nobr>"
;
}
pnl
"<td class=$c>$value"
;
}
}
...
...
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