View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003880 | mantisbt | filters | public | 2004-05-26 06:03 | 2004-08-29 02:35 |
Reporter | Mark Ingram | Assigned To | Narcissus | ||
Priority | normal | Severity | tweak | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Fixed in Version | 0.19.0rc1 | ||||
Summary | 0003880: Ordering doesnt take last_updated into account | ||||
Description | When ordering by other columns such as priority it doesnt take into account the last updated or the bug added date. When ordering by highest priority, top priorities are at top, but then when the rest that have no priority are listed, they appear in a random order. Would be nice to have them in date order too. | ||||
Tags | No tags attached. | ||||
Attached Files | |||||
Fixed this problem by adding the following lines into filter_api.php: $query2 .= " ORDER BY '$c_sort' $c_dir"; Mark Ingram
if ( $c_sort != "last_updated" ) { |
|