mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
fix typo causing number of failed attempts on IP whitelist not to be used
This commit is contained in:
parent
b4b38d54ff
commit
b3f1738f05
@ -1125,7 +1125,7 @@ class Session
|
||||
$GLOBALS['egw_info']['server']['unsuccessful_ip_whitelist'], $matches) &&
|
||||
($key=array_search($ip, $matches[1])) !== false)
|
||||
{
|
||||
$blocked = !empty($matches[3][$key]) && $false_ip > $matches[3][$key];
|
||||
$blocked = !empty($matches[2][$key]) && $false_ip > $matches[2][$key];
|
||||
}
|
||||
else // else check with general number
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user