mirror of
https://github.com/phpbb/phpbb.git
synced 2025-04-22 08:42:35 +02:00
Merge pull request #2931 from rxu/ticket/13050
[ticket/13050] Allow topic/forum subscription when email/jabber is off * rxu/ticket/13050: [ticket/13050] Allow topic/forum subscription when email/jabber is off
This commit is contained in:
commit
3458aa2482
@ -251,7 +251,7 @@ $s_watching_forum = array(
|
||||
'is_watching' => false,
|
||||
);
|
||||
|
||||
if (($config['email_enable'] || $config['jab_enable']) && $config['allow_forum_notify'] && $forum_data['forum_type'] == FORUM_POST && ($auth->acl_get('f_subscribe', $forum_id) || $user->data['user_id'] == ANONYMOUS))
|
||||
if ($config['allow_forum_notify'] && $forum_data['forum_type'] == FORUM_POST && ($auth->acl_get('f_subscribe', $forum_id) || $user->data['user_id'] == ANONYMOUS))
|
||||
{
|
||||
$notify_status = (isset($forum_data['notify_status'])) ? $forum_data['notify_status'] : NULL;
|
||||
watch_topic_forum('forum', $s_watching_forum, $user->data['user_id'], $forum_id, 0, $notify_status, $start, $forum_data['forum_name']);
|
||||
|
@ -449,7 +449,7 @@ $s_watching_topic = array(
|
||||
'is_watching' => false,
|
||||
);
|
||||
|
||||
if (($config['email_enable'] || $config['jab_enable']) && $config['allow_topic_notify'])
|
||||
if ($config['allow_topic_notify'])
|
||||
{
|
||||
$notify_status = (isset($topic_data['notify_status'])) ? $topic_data['notify_status'] : null;
|
||||
watch_topic_forum('topic', $s_watching_topic, $user->data['user_id'], $forum_id, $topic_id, $notify_status, $start, $topic_data['topic_title']);
|
||||
|
Loading…
x
Reference in New Issue
Block a user