-
Type:
Improvement
-
Status: Closed (View Workflow)
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.0.7-PL1
-
Fix Version/s: 3.0.8-RC1
-
Component/s: None
-
Labels: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 '';
|
}
|