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.

Question only superadmin is administrator, how to modify ?

More
15 years 7 months ago #66707 by squale
hi all !
question : only superadministrator is seen as "administrator", and i want all the people who have access to the backend of the site to be seen as administrator too, is it possible ? how to do that ?

thanks :)

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

More
15 years 7 months ago #66722 by xillibit
Hello,

Look in file administrator/components/com_kunena/libraries/integration/joomla15/access.php and in the following function add others groups in the query after super administrator :
Code:
function loadAdmins() { if (self::$admins === false) { self::$admins = array(); $db = JFactory::getDBO(); $db->setQuery ("SELECT u.id FROM #__users AS u" ." WHERE u.block='0' " ." AND u.usertype IN ('Administrator', 'Super Administrator')"); self::$admins = $db->loadResultArray(); KunenaError::checkDatabaseError(); } }

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
15 years 7 months ago #66723 by squale
thanks a lot xillibit, works perfect !

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

Time to create page: 0.210 seconds