diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2011-07-11 19:20:45 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2011-07-11 19:24:40 +0200 |
| commit | 773561f862e9cf4016a4176454e3fb59489259ac (patch) | |
| tree | ebf927f8b8fd5835213a9f2986908132a3eb54be /phpBB/viewforum.php | |
| parent | b2a65ac76db38e47c0644389ba737492ef6307f6 (diff) | |
| download | forums-773561f862e9cf4016a4176454e3fb59489259ac.tar forums-773561f862e9cf4016a4176454e3fb59489259ac.tar.gz forums-773561f862e9cf4016a4176454e3fb59489259ac.tar.bz2 forums-773561f862e9cf4016a4176454e3fb59489259ac.tar.xz forums-773561f862e9cf4016a4176454e3fb59489259ac.zip | |
[ticket/10237] Handle watching and unwatching the same way.
Also add some information to the confirm-box (forum_name / topic title)
PHPBB3-10237
Diffstat (limited to 'phpBB/viewforum.php')
| -rw-r--r-- | phpBB/viewforum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 61ec27ed79..e0b51bf782 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -208,7 +208,7 @@ $s_watching_forum = array( if (($config['email_enable'] || $config['jab_enable']) && $config['allow_forum_notify'] && $forum_data['forum_type'] == FORUM_POST && $auth->acl_get('f_subscribe', $forum_id)) { $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); + watch_topic_forum('forum', $s_watching_forum, $user->data['user_id'], $forum_id, 0, $notify_status, $start, $forum_data['forum_name']); } $s_forum_rules = ''; |
