diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 14:55:14 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 14:55:14 -0500 |
commit | 44aa773ce07d81d4585f3a24a728f9b445c4c098 (patch) | |
tree | 3caa90db934634a5c5f025f3a392ca91cbf2e946 /phpBB/includes/functions_posting.php | |
parent | 207bbdf48cb05abfb611f238e4ba07131131c74d (diff) | |
download | forums-44aa773ce07d81d4585f3a24a728f9b445c4c098.tar forums-44aa773ce07d81d4585f3a24a728f9b445c4c098.tar.gz forums-44aa773ce07d81d4585f3a24a728f9b445c4c098.tar.bz2 forums-44aa773ce07d81d4585f3a24a728f9b445c4c098.tar.xz forums-44aa773ce07d81d4585f3a24a728f9b445c4c098.zip |
[ticket/11103] Allow notification types to override update functionality
This is needed for quote editing because we need to check if the users
are still all quoted or notify new quotes appropriately.
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index ff0a59a4e3..26d9b81896 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2256,7 +2256,7 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u $notifications->update_notifications('post', array_merge($data, array( 'post_username' => $username, ))); - $notifications->add_notifications('quote', array_merge($data, array( + $notifications->update_notifications('quote', array_merge($data, array( 'post_username' => $username, ))); break; |