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 Kunena 1.5.3 and sh404SEF

More
16 years 9 months ago #23337 by sbouloc
Hello,
After I upgraded Kunena to version 1.5.3, I get the following error message when I post a new topic or when I reply to a topic:
Code:
Warning: Division by zero in com_sh404sef/sef_ext/com_kunena.php on line 368

Here's whats in the file starting at line 367:
Code:
if(isset($limitstart)) $title[] = 'page-'.($limitstart/$limit+1); shRemoveFromGETVarsList('func'); shRemoveFromGETVarsList('do'); ...

Does anyone have a clue on this please?

Thank you.

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

More
16 years 9 months ago #23489 by Matias
$limitstart should never be 0. As workaround change the first line into this:
Code:
if(isset($limitstart) && $limitstart>0)

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

Time to create page: 0.323 seconds