diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-23 17:58:09 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-23 17:58:09 +0100 |
commit | 293a5798af154efb75d0f467639273452e35477e (patch) | |
tree | 289bf6b07d9b6dd6f98b5b2968c64b2f31978ac9 /program/lib/Roundcube | |
parent | f3713a633006b2e954a2f1660a8a69f4fbf0c5e7 (diff) |
Use the right variable for IPv6 check
Diffstat (limited to 'program/lib/Roundcube')
-rw-r--r-- | program/lib/Roundcube/rcube_utils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube_utils.php b/program/lib/Roundcube/rcube_utils.php index 4b687111e..1ae782a25 100644 --- a/program/lib/Roundcube/rcube_utils.php +++ b/program/lib/Roundcube/rcube_utils.php @@ -156,7 +156,7 @@ class rcube_utils { // IPv6, but there's no build-in IPv6 support if (strpos($ip, ':') !== false && !defined('AF_INET6')) { - $parts = explode(':', $domain_part); + $parts = explode(':', $ip); $count = count($parts); if ($count > 8 || $count < 2) { |