diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 16:54:20 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-14 16:54:20 -0500 |
commit | ed1ec8e720a7ec3c1270cd631cc37e531f315f26 (patch) | |
tree | f229f6ff8cbad50013b9059fa4a2d6a6f05bcf05 /phpBB/includes/mcp/mcp_queue.php | |
parent | 1ab0c469e253df0e01f358a4a86e1b6df290d740 (diff) | |
download | forums-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/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 1d9a2dfedc..48557192d2 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -646,7 +646,7 @@ function approve_post($post_id_list, $id, $mode) else { // Topic Notifications - $notifications->add_notifications('post', $post_data); + $notifications->add_notifications(array('quote', 'bookmark', 'post'), $post_data); } } |