1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-24 18:41:52 +02:00

[ticket/17176] Ensure slow tests are not run when not selected

PHPBB3-17176
This commit is contained in:
Marc Alexander
2023-09-09 12:27:52 +02:00
parent 1f9d14357c
commit 3e2628fb73
2 changed files with 5 additions and 5 deletions

View File

@@ -201,7 +201,7 @@ class ldap extends base
1
);
$ldap_result = @ldap_get_entries($ldap, $search);
$ldap_result = $search !== false ? @ldap_get_entries($ldap, $search) : [];
if (is_array($ldap_result) && count($ldap_result) > 1)
{