diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-02 15:18:23 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-10-02 15:18:23 +0200 |
commit | 2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9 (patch) | |
tree | 8c3f0b4768c47fc60bc13dc7ae7d9281d508a4c9 /phpBB/includes/mcp/mcp_queue.php | |
parent | c123c93ca00bf15b180f88e0ebe5ffd1d9041bac (diff) | |
parent | e132cdd325b3c8a67cd4790d6680cb3a451104e4 (diff) | |
download | forums-2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9.tar forums-2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9.tar.gz forums-2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9.tar.bz2 forums-2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9.tar.xz forums-2ee13bbc24c66b31a0ec6adc2ed3adae6941a6e9.zip |
Merge pull request #3004 from Senky/ticket/13116
[ticket/13116] Topic and post approval notifications got interchanged
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); } } } |