1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-15 05:04:09 +02:00

Merge branch '3.2.x'

This commit is contained in:
Marc Alexander
2019-04-17 21:24:59 +02:00
4 changed files with 37 additions and 6 deletions

View File

@@ -73,7 +73,8 @@ class phpbb_session_check_ban_test extends phpbb_session_test_case
{
try
{
$is_banned = $this->session->check_ban($user_id, $user_ips, $user_email, $return);
$ban = $this->session->check_ban($user_id, $user_ips, $user_email, $return);
$is_banned = !empty($ban);
}
catch (PHPUnit\Framework\Error\Notice $e)
{