diff options
Diffstat (limited to 'phpBB/includes/functions_posting.php')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 78c66ac6b8..73a2e0be0c 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2309,8 +2309,14 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll_ary, &$data  			case 'edit_first_post':  			case 'edit':  			case 'edit_last_post': +				if ($user->data['user_id'] == $poster_id) +				{ +					$phpbb_notifications->update_notifications(array( +						'notification.type.quote', +					), $notification_data); +				} +  				$phpbb_notifications->update_notifications(array( -					'notification.type.quote',  					'notification.type.bookmark',  					'notification.type.topic',  					'notification.type.post', | 
