mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
be more precise
This commit is contained in:
parent
b6460616ba
commit
7de12d64d5
|
@ -126,11 +126,11 @@ class TrafficLimiter extends AbstractPersistence
|
||||||
$range = Factory::rangeFromString($ipRange);
|
$range = Factory::rangeFromString($ipRange);
|
||||||
|
|
||||||
// address could not be parsed, we might not be in IP space and try a string comparison instead
|
// address could not be parsed, we might not be in IP space and try a string comparison instead
|
||||||
if ($address == null) {
|
if (is_null($address)) {
|
||||||
return $_SERVER[self::$_ipKey] === $ipRange;
|
return $_SERVER[self::$_ipKey] === $ipRange;
|
||||||
}
|
}
|
||||||
// range could not be parsed, possibly an invalid ip range given in config
|
// range could not be parsed, possibly an invalid ip range given in config
|
||||||
if ($range == null) {
|
if (is_null($range)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user