Kunena 7.0.4 Released

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

Question RTL Pagination Direction

More
16 years 3 months ago #36961 by kamal
Replied by kamal on topic Re:RTL Pagination Direction
I found the string in " flat.php " about line 279
Code:
for ($hopPage = $startPage; $hopPage <= $threadPages; $hopPage++)

i tried to change it according to your string:
Code:
for ($i = $totalpages; $i >= $startpage; $i--)

to be like this:
Code:
for ($hopPage = $threadPages; $hopPage >= $startPage; $hopPage--)

but only the first page# showed up with a comma and 2nd page not :S

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

More
16 years 3 months ago - 16 years 3 months ago #37026 by etusha
Replied by etusha on topic Re:RTL Pagination Direction
i give fast look but that not similar things

I should test and see it on localhost to give your the right respond


but try
($hopPage = $threadPages; $hopPage = $startPage; $hopPage--)

OR
for ($hopPage = $threadPages; $hopPage > $startPage; $hopPage--)

maybe work
Last edit: 16 years 3 months ago by etusha.

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

Time to create page: 0.254 seconds