Bug report: cerber_get_remain_count() should use an array of integers
-
cerber-load.php#2986
function cerber_get_remain_count( $ip = '', $check_acl = true, $activity = array( '7,51,52' ), $allowed = null, $period = null ) {
should be
function cerber_get_remain_count( $ip = '', $check_acl = true, $activity = [7,51,52], $allowed = null, $period = null ) {
This bug resulted in not keeping track of login retry remain count in certain conditions (only counting activity ‘7’)
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Bug report: cerber_get_remain_count() should use an array of integers’ is closed to new replies.