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 Permission to write only for publisher Group

More
16 years 11 months ago #19968 by tc001mt
Many thanks Matias, you help me too much.
What i made
(and looks like works but if somebody has better ideas for sure are welcome) :

inside used template folder of Kunena 1.5.3 | 2009-06-15 |

View.php

line 271
from
Code:
if ($is_Moderator || ($forumLocked == 0 && ($kunena_my->id > 0 || $fbConfig->pubwrite) ))

to
Code:
if ($is_Moderator || ($forumLocked == 0 && ($kunena_my->id > 0 || $fbConfig->pubwrite) &&($my->gid > 18 || $fbConfig->pubwrite)))

line 237
Code:
if ($is_Moderator || (($forumLocked == 0 && $topicLocked == 0) && ($kunena_my->id > 0 || $fbConfig->pubwrite) ))
to
Code:
if ($is_Moderator || (($forumLocked == 0 && $topicLocked == 0) && ($kunena_my->id > 0 || $fbConfig->pubwrite) && ($my->gid > 18 || $fbConfig->pubwrite)))

message.php

line 350
Code:
if ($kunena_my->id > 0 && !isset($msg_closed)):
to
Code:
$user =& JFactory::getUser(); if ($my->id > 0 && $user->usertype !=='Registered' && !isset($msg_closed)): //if ($kunena_my->id > 0 && !isset($msg_closed)):

line 366
Code:
{
to
Code:
{ $user =& JFactory::getUser();

line 367-368
Code:
echo " " . $msg_reply; echo " " . $msg_quote;
to
Code:
if ($user->usertype =='Registered' ){echo"";} else {echo " " . $msg_reply;} if ($user->usertype =='Registered' ){echo"";} else{ echo " " . $msg_quote;}

thank you

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

More
16 years 11 months ago #19970 by tc001mt
Sorry i forget :

in this manner only from author will see post icons

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

More
16 years 11 months ago #20139 by Matias
Looks ok to me, but you may also want to look at lib/kunena.permissions.php

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

Time to create page: 0.334 seconds