Steps to reproduce the issue
Create a MenuItem of type "Tagged Items". Set sort order to "published date" and "asc".
Expected result
The list should be ordered according to this settings (published date asc).
Actual result
The default sort order (fallback) is used (order by title asc)
System information (as much as possible)
PHP Version
5.5.22
MySQL Version
5.6.23
Additional comments
Labels |
Added:
?
|
Category | ⇒ | Tags |
Works for me Thanks!
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-03-07 00:45:05 |
Confirmed.
I think #6329, #6331 and #6348 are dealing with the same problem.
The reason for that are the recent changes in #5675.
By replacing
with
in the frontend Tag model the menu item options are not merged any longer to the
$params
so that only the component options are used.@zero-24
Maybe we could replace the actual code with:
That should solve the current issue as well as the issue in #5675.