Kunena 6.4.13 Released

The Kunena team has announce the arrival of Kunena 6.4.13 [6.4.13] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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 6.0
Hint: This version is primarily intended to facilitate an upgrade if Joomla was first updated to version 6.1 before Kunena was up to dated.

Solved Online users list in alphabetical instead of ASCII order?

More
10 years 4 months ago #173463 by WolfgangOWL
I want the online users list to be shown in alphabetical instead of ASCII order. How can I achieve that?

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

More
10 years 4 months ago #173465 by WolfgangOWL
Ok, I found the solution by myself.

In /components/com_kunena/controller/widget/whoisonline/display.php

change line 95 and 96

ksort($this->onlineList);
ksort($this->hiddenList);

to

ksort($this->onlineList, SORT_NATURAL | SORT_FLAG_CASE);
ksort($this->hiddenList, SORT_NATURAL | SORT_FLAG_CASE);

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

Time to create page: 0.224 seconds