diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-06-17 15:27:45 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-06-17 15:27:45 +0200 |
commit | 70f09a60c7732e3793334e3cf7f9e38307bd9edd (patch) | |
tree | 18136b411425816d342cacd5d8f38bb9bedfd173 /phpBB/includes/functions_privmsgs.php | |
parent | a393a23a087797531eee6ae998ec2698a89b4fd7 (diff) | |
parent | a91b37d8f218d9a3b5f961d9b03a57501584e9c3 (diff) | |
download | forums-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.php | 2 |
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()) ); |