aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2012-09-14 16:54:20 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-09-14 16:54:20 -0500
commited1ec8e720a7ec3c1270cd631cc37e531f315f26 (patch)
treef229f6ff8cbad50013b9059fa4a2d6a6f05bcf05 /phpBB/includes/functions_posting.php
parent1ab0c469e253df0e01f358a4a86e1b6df290d740 (diff)
downloadforums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar
forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.gz
forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.bz2
forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.tar.xz
forums-ed1ec8e720a7ec3c1270cd631cc37e531f315f26.zip
[ticket/11103] Add/Update/Mark Read functions accept an array for the type
This saves a lot of code in some areas (where the same data is sent, just for different types) Notifications for bookmarks PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php16
1 files changed, 4 insertions, 12 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 26d9b81896..56f84562f7 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -2227,20 +2227,14 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
switch ($mode)
{
case 'post' :
- $notifications->add_notifications('topic', array_merge($data, array(
- 'post_username' => $username,
- )));
- $notifications->add_notifications('quote', array_merge($data, array(
+ $notifications->add_notifications(array('topic', 'quote'), array_merge($data, array(
'post_username' => $username,
)));
break;
case 'reply' :
case 'quote' :
- $notifications->add_notifications('post', array_merge($data, array(
- 'post_username' => $username,
- )));
- $notifications->add_notifications('quote', array_merge($data, array(
+ $notifications->add_notifications(array('quote', 'bookmark', 'post'), array_merge($data, array(
'post_username' => $username,
)));
break;
@@ -2253,10 +2247,8 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll, &$data, $u
'post_username' => $username,
'topic_title' => $subject,
)));
- $notifications->update_notifications('post', array_merge($data, array(
- 'post_username' => $username,
- )));
- $notifications->update_notifications('quote', array_merge($data, array(
+
+ $notifications->update_notifications(array('quote', 'bookmark', 'post'), array_merge($data, array(
'post_username' => $username,
)));
break;