Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] 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 eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Important Notice: Undefined index: view in /site/administrator/components/com_kunena/libraries/route/route.php on line 497

More
13 years 7 months ago #135009 by freeme

xillibit wrote: Can-you tell me please exactly how to reproduce the issue ?


It seems that it is related to the SobiPro installation.

I recognized that the error occours only on pages, where the SobiPro component is shown. On pages, where I use other components, Kunena latest is shown as usual...

I am using SobiPro 1.0.7

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

More
13 years 7 months ago #135028 by xillibit
I will try to reproduce the issue with that

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 7 months ago #135424 by freeme
Hi, did you have a chance to reproduce it?
I just updated SobiPRO to the latest version 1.0.8 - still the same issue.

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

More
13 years 7 months ago #135442 by xillibit
I'am able to reproduce it, i'am checking it

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 7 months ago #135490 by xillibit
In the file /administrator/components/com_kunena/libraries/route/route.php in line 497 replace that :
Code:
switch ($item->query['view']) { case 'home': break; case 'category': case 'topic': $matchcount = self::checkCategory($item, $uri); break; default: $matchcount = self::check($item, $uri);

by :
Code:
if ( !empty($item->query['view']) ) { switch ($item->query['view']) { case 'home': $matchcount = self::checkHome($item, $catid); break; case 'category': case 'topic': $matchcount = self::checkCategory($item, $uri); break; default: $matchcount = self::check($item, $uri); } return $matchcount; } else { return 1; }

I don't provide support by PM, because this can be useful for someone else.

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

More
13 years 6 months ago #136038 by freeme
Hi,
sorry for not answering earlier. If I try to do the solution as suggested, I get an error message:

Parse error: syntax error, unexpected T_PROTECTED in /www/htdocs//administrator/components/com_kunena/libraries/route/route.php on line 550

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

Time to create page: 0.290 seconds