View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0033992 | mantisbt | rss | public | 2024-03-08 21:31 | 2026-08-22 13:13 |
| Reporter | domosekai | Assigned To | dregad | ||
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | resolved | Resolution | fixed | ||
| Product Version | 2.26.1 | ||||
| Target Version | 2.29.0 | Fixed in Version | 2.29.0 | ||
| Summary | 0033992: RSS should have been sorted by date_submitted but failed due to invisibility | ||||
| Description | Currently if a column is not visible, it's not sortable. See notes at While in View Issues it's not a problem because it makes no sense to sort by an invisible column, in RSS the default column to sort by is
A temporary fix is to use | ||||
| Tags | No tags attached. | ||||
|
Thanks for the bug report. I can confirm the behavior as described. It would appear that when the filter API was refactored several years ago, it did not consider that filters were also used in non-UI contexts such as RSS. Or more accurately, the question was asked, but not answered [1]. |
|
|
MantisBT: master 60c5f7bf 2026-07-18 06:54 Details Diff |
Allow filters to sort on invisible columns New filter_get_sort_properties_array() API function adds a new $p_visible_only parameter to determine if sorting should be restricted to visible columns (default) or allowed on all columns. Existing filter_get_visible_sort_properties_array() becomes a proxy for the new function. Add $visible_only property to BugFilterQuery class, initialized in Constructor via $p_config parameter, defaulting to true. It is used in the build_order_by() method in the filter_get_sort_properties_array() call. filter_get_bug_rows() gets a new $p_visible_only parameter, passed on to BugFilterQuery's constructor. Fixes 0033992 |
Affected Issues 0033992 |
|
| mod - core/classes/BugFilterQuery.class.php | Diff File | ||
| mod - core/filter_api.php | Diff File | ||
|
MantisBT: master ccd20274 2026-07-18 07:06 Details Diff |
Fix sorting by submitted date on Issues RSS feed Fixes 0033992 |
Affected Issues 0033992 |
|
| mod - issues_rss.php | Diff File | ||