diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2014-09-29 21:13:53 +0200 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2014-09-29 21:13:53 +0200 |
commit | e132cdd325b3c8a67cd4790d6680cb3a451104e4 (patch) | |
tree | 7f1c29e62303ab2f908a6f3f5a792aebca873f84 /phpBB/includes/mcp/mcp_queue.php | |
parent | 6f093ade8a025039c04e88c473e619153656c6a7 (diff) | |
download | forums-e132cdd325b3c8a67cd4790d6680cb3a451104e4.tar forums-e132cdd325b3c8a67cd4790d6680cb3a451104e4.tar.gz forums-e132cdd325b3c8a67cd4790d6680cb3a451104e4.tar.bz2 forums-e132cdd325b3c8a67cd4790d6680cb3a451104e4.tar.xz forums-e132cdd325b3c8a67cd4790d6680cb3a451104e4.zip |
[ticket/13116] Interchange post and topic approval notification
PHPBB3-13116
Diffstat (limited to 'phpBB/includes/mcp/mcp_queue.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index bfd30a5be2..f9c00da3ec 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -745,11 +745,11 @@ class mcp_queue if (!$post_data['topic_posts_approved']) { - $phpbb_notifications->add_notifications('notification.type.approve_post', $post_data); + $phpbb_notifications->add_notifications('notification.type.approve_topic', $post_data); } else { - $phpbb_notifications->add_notifications('notification.type.approve_topic', $post_data); + $phpbb_notifications->add_notifications('notification.type.approve_post', $post_data); } } } |