aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_privmsgs.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-06-17 15:27:45 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-06-17 15:27:45 +0200
commit70f09a60c7732e3793334e3cf7f9e38307bd9edd (patch)
tree18136b411425816d342cacd5d8f38bb9bedfd173 /phpBB/includes/functions_privmsgs.php
parenta393a23a087797531eee6ae998ec2698a89b4fd7 (diff)
parenta91b37d8f218d9a3b5f961d9b03a57501584e9c3 (diff)
downloadforums-70f09a60c7732e3793334e3cf7f9e38307bd9edd.tar
forums-70f09a60c7732e3793334e3cf7f9e38307bd9edd.tar.gz
forums-70f09a60c7732e3793334e3cf7f9e38307bd9edd.tar.bz2
forums-70f09a60c7732e3793334e3cf7f9e38307bd9edd.tar.xz
forums-70f09a60c7732e3793334e3cf7f9e38307bd9edd.zip
Merge pull request #5620 from senky/ticket/16075
[ticket/16075] Fix warning in PM filter
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r--phpBB/includes/functions_privmsgs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php
index 444bf2c7e0..a7a4b050fe 100644
--- a/phpBB/includes/functions_privmsgs.php
+++ b/phpBB/includes/functions_privmsgs.php
@@ -490,7 +490,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false)
'bcc' => explode(':', $row['bcc_address']),
'friend' => (isset($zebra[$row['author_id']])) ? $zebra[$row['author_id']]['friend'] : 0,
'foe' => (isset($zebra[$row['author_id']])) ? $zebra[$row['author_id']]['foe'] : 0,
- 'user_in_group' => array($user->data['group_id']),
+ 'user_in_group' => $user->data['group_id'],
'author_in_group' => array())
);