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 How to disable email notifications to moderators for the moderated categories?

More
15 years 1 month ago #88635 by Matias
Moderated categories send always emails to admins and moderators.

if you want to change that, go to components/com_kunena/funcs/post.php around line 203 (in K1.6.4):
Code:
$message->emailToSubscribers($LastPostUrl, $this->config->allowsubscriptions && ! $holdPost, $this->config->mailmod || $holdPost, $this->config->mailadmin || $holdPost);

and change it to:
Code:
$message->emailToSubscribers($LastPostUrl, $this->config->allowsubscriptions && ! $holdPost, $this->config->mailmod && $holdPost, $this->config->mailadmin && $holdPost);

This change should fix your issue.

We cannot do the change to the next release because of it is already in freeze (letting testers and translators to catch up).
The following user(s) said Thank You: bjassoc

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

Time to create page: 0.220 seconds