-
Improvement
-
Resolution: Fixed
-
Minor
-
3.0.7-PL1
-
None
-
None
As per title. function user_ipwhois() lacks support for IPv6 addresses.
// Check IP
|
// Only supporting IPv4 at the moment...
|
if (empty($ip) || !preg_match(get_preg_expression('ipv4'), $ip))
|
{
|
return '';
|
}
|