Add auto-subscribe to your topics

This commit is contained in:
Visman 2020-09-05 23:34:11 +07:00
parent 55569713fd
commit 01c8880db4

View file

@ -285,6 +285,15 @@ class Post extends Page
if ($createTopic) {
if ('1' == $this->c->config->o_forum_subscriptions) { // ????
// автоподписка на свою тему
if (
'1' == $this->c->config->o_topic_subscriptions
&& $this->user->auto_notify
&& $this->user->email_confirmed
) {
$this->c->subscriptions->subscribe($this->user, $topic);
}
$this->c->subscriptions->send($post, $topic);
}
} else {