mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-08 08:35:31 +02:00
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8595 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
374093d615
commit
3ecdbd068c
@ -110,6 +110,7 @@
|
|||||||
<li>[Change] Show email ban reason on registration. Additionally allow custom errors properly returned if using validate_data(). (Bug #26885)</li>
|
<li>[Change] Show email ban reason on registration. Additionally allow custom errors properly returned if using validate_data(). (Bug #26885)</li>
|
||||||
<li>[Feature] Streamlined banning via the MCP by adding a ban link to the user profile. Also pre-fills ban fields as far as possible.</li>
|
<li>[Feature] Streamlined banning via the MCP by adding a ban link to the user profile. Also pre-fills ban fields as far as possible.</li>
|
||||||
<li>[Feature] Added ACP logout to reset an admin session.</li>
|
<li>[Feature] Added ACP logout to reset an admin session.</li>
|
||||||
|
<li>[Fix] reset forum notifications in viewtopic (Bug #28025)</li>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -451,9 +451,16 @@ $s_watching_topic = array(
|
|||||||
'is_watching' => false,
|
'is_watching' => false,
|
||||||
);
|
);
|
||||||
|
|
||||||
if ($config['email_enable'] && $config['allow_topic_notify'] && $user->data['is_registered'])
|
if (($config['email_enable'] || $config['jab_enable']) && $config['allow_topic_notify'] && $user->data['is_registered'])
|
||||||
{
|
{
|
||||||
watch_topic_forum('topic', $s_watching_topic, $user->data['user_id'], $forum_id, $topic_id, $topic_data['notify_status'], $start);
|
watch_topic_forum('topic', $s_watching_topic, $user->data['user_id'], $forum_id, $topic_id, $topic_data['notify_status'], $start);
|
||||||
|
|
||||||
|
// Reset forum notification if forum notify is set
|
||||||
|
if ($config['allow_forum_notify'] && $auth->acl_get('f_subscribe', $forum_id))
|
||||||
|
{
|
||||||
|
$s_watching_forum = $s_watching_topic;
|
||||||
|
watch_topic_forum('forum', $s_watching_forum, $user->data['user_id'], $forum_id, 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bookmarks
|
// Bookmarks
|
||||||
|
Loading…
x
Reference in New Issue
Block a user