Kunena 7.0.8 Released

The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] 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 7.0

Solved Online users list in alphabetical instead of ASCII order?

More
10 years 6 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 6 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.250 seconds