mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge pull request #2389 from prototech/ticket/12482
[ticket/12482] Fixed undefined variable: data. * prototech/ticket/12482: [ticket/12482] Fixed undefined variable: data.
This commit is contained in:
commit
936518d201
1 changed files with 1 additions and 1 deletions
|
@ -1618,7 +1618,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
|
||||||
!in_array($poster_id, $permanently_banned_users) &&
|
!in_array($poster_id, $permanently_banned_users) &&
|
||||||
|
|
||||||
// They must allow users to contact via PM
|
// They must allow users to contact via PM
|
||||||
(($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_')) || $data['user_allow_pm'])
|
(($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_')) || $user_cache[$poster_id]['allow_pm'])
|
||||||
);
|
);
|
||||||
|
|
||||||
$u_pm = '';
|
$u_pm = '';
|
||||||
|
|
Loading…
Add table
Reference in a new issue