Skip to content

Commit ff079dd

Browse files
committed
bug symfony#12572 [HttpFoundation] fix checkip6 (Neime)
This PR was submitted for the 2.7 branch but it was merged into the 2.3 branch instead (closes symfony#12572). Discussion ---------- [HttpFoundation] fix checkip6 | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | I have this error ContextErrorException: Warning: inet_pton(): Unrecognized address X.X.X.X:X in IpUtils.php line 110 X.X.X.X:X is detected as a ipv6 because HTTP_X_FORWARDED_FOR have a port. Commits ------- 1da0ba4 [Debug] fix checkip6
2 parents f68b7c7 + 1da0ba4 commit ff079dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpFoundation/IpUtils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static function checkIp($requestIp, $ips)
3939
$ips = array($ips);
4040
}
4141

42-
$method = false !== strpos($requestIp, ':') ? 'checkIp6' : 'checkIp4';
42+
$method = substr_count($requestIp, ':') > 1 ? 'checkIp6' : 'checkIp4';
4343

4444
foreach ($ips as $ip) {
4545
if (self::$method($requestIp, $ip)) {

0 commit comments

Comments
 (0)