|
|
What steps will reproduce the problem?
1. Login into WF admin area
2. Notice that comments are not sorted in date order
What is the expected output? What do you see instead?
The comments on the main dashboard page should be sorted in reverse date
order - either on the updated or created dates
What version of the product are you using? On what operating system?
Latest 1.3b1 version on git hub (as of 26/01/209)
Please provide any additional information below.
This looks like it needs an order clause on the find() call in
wild_dashboards_controller.php. ie:
$comments = $this->WildComment->find('all', array('limit' => 5,
'conditions' => 'spam = 0', 'order' => array('WildComment.updated DESC')));
This might also be needed for the messages, too?
|