News module ordering bug
Posted: Thu Mar 13, 2008 3:10 pm
I couldn't get the news module to order stories by news_title, the story title. The fix is to change of actin.default.php to add "mn." before the field name :
$query1 .= "ORDER BY mn." . str_replace("'", '', str_replace(';', '', $params['sortby'])) . " ";
$query1 .= "ORDER BY mn." . str_replace("'", '', str_replace(';', '', $params['sortby'])) . " ";