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
2508e7d7
Commit
2508e7d7
authored
Sep 10, 2001
by
jake%acutex.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 8647 - Add an option to the query page to sort by Last Changed date.
Patch by Matthew Tuck <matty@chariot.net.au> r= jake@acutex.net x2
parent
6596544f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
buglist.cgi
buglist.cgi
+4
-0
query.cgi
query.cgi
+1
-1
No files found.
buglist.cgi
View file @
2508e7d7
...
...
@@ -1071,6 +1071,10 @@ if (defined $::FORM{'order'} && $::FORM{'order'} ne "") {
$::FORM
{
'order'
}
=
"map_assigned_to.login_name, bugs.bug_status, priority, bugs.bug_id"
;
last
ORDER
;
};
/Changed/
&&
do
{
$::FORM
{
'order'
}
=
"bugs.delta_ts, bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id"
;
last
ORDER
;
};
# DEFAULT
$::FORM
{
'order'
}
=
"bugs.bug_status, bugs.priority, map_assigned_to.login_name, bugs.bug_id"
;
}
...
...
query.cgi
View file @
2508e7d7
...
...
@@ -1016,7 +1016,7 @@ print qq{
}
;
my
$deforder
=
"'Importance'"
;
my
@orders
=
(
'Bug Number'
,
$deforder
,
'Assignee'
);
my
@orders
=
(
'Bug Number'
,
$deforder
,
'Assignee'
,
'Last Changed'
);
if
(
$::COOKIE
{
'LASTORDER'
})
{
$deforder
=
"Reuse same sort as last time"
;
...
...
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