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.

If you are having problems then, for your own benefit, it would save us all a lot of time if you would kindly post your configuration report when you ask for help from this forum. If you do not post your configuration report we will not ask you for it but you will probably not get your problem solved, either.

K 2.0 support will cease on 31 August 2013 and this section of the forum will be closed and archived after that time and no further questions will be answered about this version.

Question Creating new topic as guest breaks Rockettheme Menu

More
13 years 8 months ago #133182 by TKtemp

function kunenaCheckAnonymousAllowed(catid) {
if ( arrayanynomousbox[catid] !== undefined ) {
document.id('kanynomous-check').setStyle('display');
} else {
document.id('kanynomous-check').setStyle('display','none');
kbutton.removeProperty('checked');
}


this piece of code is from kunena
file: /lib/kunena.special.js.php about line 48

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

More
13 years 8 months ago - 13 years 8 months ago #133184 by sozzled
Thank you. So the full path to this file is ../components/com_kunena/lib/kunena.special.js.php, is that correct? I will refer this matter to the Kunena development team for resolution. Thank you for your help.

GitHub report: github.com/Kunena/Kunena-2.0/issues/1099
Last edit: 13 years 8 months ago by sozzled.

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

More
13 years 8 months ago - 13 years 8 months ago #133266 by xillibit
Try that, replace this in the function kunenaCheckAnonymousAllowed(catid) { :
Code:
document.id('kanynomous-check').setStyle('display');

by :
Code:
if(document.id('kanynomous-check') !== null) { document.id('kanynomous-check').setStyle('display'); }

I don't provide support by PM, because this can be useful for someone else.
Last edit: 13 years 8 months ago by xillibit.

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

Time to create page: 0.251 seconds