From 284cba438b4bca43352174ce97f5a455c229146c Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Tue, 29 Aug 2006 14:57:17 +0000 Subject: [PATCH] hopefully fixing bug #3966 git-svn-id: file:///svn/phpbb/trunk@6326 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/posting.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/phpBB/posting.php b/phpBB/posting.php index fc3ce33c11..c763f0c333 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -420,6 +420,12 @@ if ($mode != 'post' && $config['allow_topic_notify'] && $user->data['is_register $db->sql_freeresult($result); } +// If the user is replying or posting and not already watching this topic but set to always being notified we need to overwrite this setting +if ($mode != 'edit' && $config['allow_topic_notify'] && $user->data['is_registered'] && !$post_data['notify_set']) +{ + $post_data['notify_set'] = $user->data['user_notify']; +} + // Do we want to edit our post ? if ($mode == 'edit' && $post_data['bbcode_uid']) {