aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/approve_post.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-08-09 12:42:14 +0200
committerMarc Alexander <admin@m-a-styles.de>2014-08-09 12:42:14 +0200
commit6a13f983a4a65483f361a2e3e799199bdd9b3ae3 (patch)
tree36f64a32c241aa7c8d1e1fcffc2ffa8c9b7e19fa /phpBB/phpbb/notification/type/approve_post.php
parentcccd54dde8d2f7733fb44ae6e47f4ec81fa96056 (diff)
downloadforums-6a13f983a4a65483f361a2e3e799199bdd9b3ae3.tar
forums-6a13f983a4a65483f361a2e3e799199bdd9b3ae3.tar.gz
forums-6a13f983a4a65483f361a2e3e799199bdd9b3ae3.tar.bz2
forums-6a13f983a4a65483f361a2e3e799199bdd9b3ae3.tar.xz
forums-6a13f983a4a65483f361a2e3e799199bdd9b3ae3.zip
[ticket/12742] Replace authenticated with authorised
PHPBB3-12742
Diffstat (limited to 'phpBB/phpbb/notification/type/approve_post.php')
-rw-r--r--phpBB/phpbb/notification/type/approve_post.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/approve_post.php b/phpBB/phpbb/notification/type/approve_post.php
index 0e258f34f0..22c9076adc 100644
--- a/phpBB/phpbb/notification/type/approve_post.php
+++ b/phpBB/phpbb/notification/type/approve_post.php
@@ -81,7 +81,7 @@ class approve_post extends \phpbb\notification\type\post
$users = array();
$users[$post['poster_id']] = array('');
- return $this->get_authenticated_recipients(array_keys($users), $post['forum_id'], array_merge($options, array(
+ return $this->get_authorised_recipients(array_keys($users), $post['forum_id'], array_merge($options, array(
'item_type' => self::$notification_option['id'],
)));
}