Kunena 7.0.6 & Kunena 6.4.12 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.6 [K 7.0.6] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the twelfth version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Question [Kunena 1.0.7b] Can´t reorder child boards

More
17 years 4 months ago - 17 years 4 months ago #2009 by dma
Can´t reorder child boards, tried both sample data child and new ones.
It is possible to reorder them in backend but it has no effect in frontend view.
Last edit: 17 years 4 months ago by dma. Reason: unclear post

Please Log in or Create an account to join the conversation.

More
17 years 4 months ago #2049 by dma
Searching over at BOJ I found my old question about this and a missing ORDER BY ordering is my problem.
Someone with more experience need to check if this is correct.

components/com_kunena/template/default_ex/listcat.php
Code:
// Get the forumsubparent categories :: get the subcategories here $database->setQuery("SELECT id, name, numTopics, numPosts from #__fb_categories WHERE parent='$singlerow->id' AND published =1 ");

Change to:
Code:
// Get the forumsubparent categories :: get the subcategories here $database->setQuery("SELECT id, name, numTopics, numPosts from #__fb_categories WHERE parent='$singlerow->id' AND published =1 ORDER BY ordering");

This goes for both default and default_ex template.

Please Log in or Create an account to join the conversation.

More
17 years 4 months ago #2189 by Matias
Fixed in SVN. Thanks for sharing.

Please Log in or Create an account to join the conversation.

Time to create page: 0.235 seconds