From: Aaron Schulz Date: Sun, 13 Feb 2011 23:30:26 +0000 (+0000) Subject: Follow-up r82093: fixed comment :) X-Git-Tag: 1.31.0-rc.0~32000 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=7fe32a2fa2f78281d86e4c21f0ff09f7c0b5bc92;p=lhc%2Fweb%2Fwiklou.git Follow-up r82093: fixed comment :) --- diff --git a/includes/IP.php b/includes/IP.php index e64c0ca5e2..5f492c66b4 100644 --- a/includes/IP.php +++ b/includes/IP.php @@ -48,7 +48,7 @@ define( 'RE_IPV6_ADD', '|' . // contains no "::" RE_IPV6_WORD . '(?::' . RE_IPV6_WORD . '){7}' . ')' - // NOTE: With PCRE 7.2+, we can combine the last two cases into one regex: + // NOTE: With PCRE 7.2+, we can combine the two '"::" in the middle' cases into: // RE_IPV6_WORD . '(?::((?(-1)|:))?' . RE_IPV6_WORD . '){1,6}(?(-2)|^)' // This also improves regex concatenation by using relative references. );