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
fbae476c
Commit
fbae476c
authored
Nov 18, 2001
by
justdave%syndicomm.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 12284: allow user to specify which columns to display in a bug list
Patch by Andreas Franke <afranke@ags.uni-sb.de> r= gerv, kiko
parent
d5149813
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
buglist.cgi
buglist.cgi
+3
-1
No files found.
buglist.cgi
View file @
fbae476c
...
...
@@ -1004,7 +1004,9 @@ DefCol("votes", "bugs.votes", "Votes", "bugs.votes desc");
DefCol
(
"keywords"
,
"bugs.keywords"
,
"Keywords"
,
"bugs.keywords"
,
5
);
my
@collist
;
if
(
defined
$::COOKIE
{
'COLUMNLIST'
})
{
if
(
defined
$::FORM
{
'columnlist'
})
{
@collist
=
split
(
/[ ,]+/
,
$::FORM
{
'columnlist'
});
}
elsif
(
defined
$::COOKIE
{
'COLUMNLIST'
})
{
@collist
=
split
(
/ /
,
$::COOKIE
{
'COLUMNLIST'
});
}
else
{
@collist
=
@::default_column_list
;
...
...
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