*Comment grammar
authorAaron Schulz <aaron@users.mediawiki.org>
Tue, 4 Sep 2007 15:05:08 +0000 (15:05 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Tue, 4 Sep 2007 15:05:08 +0000 (15:05 +0000)
includes/Title.php

index 6934264..1d9e040 100644 (file)
@@ -1918,10 +1918,10 @@ class Title {
                }
                // Allow IPv6 usernames to start with '::' by canonicalizing IPv6 titles.
                // IP names are not allowed for accounts, and can only be referring to 
-               // edits from the IP. IPv6, given '::' abbreviations and caps/lowercaps, 
+               // edits from the IP. Given '::' abbreviations and caps/lowercaps, 
                // there are numerous ways to present the same IP. Having sp:contribs scan 
                // them all is silly and having some show the edits and others not is 
-               // inconsistent. Keep them normalized instead.
+               // inconsistent. Same for talk/userpages. Keep them normalized instead.
                $dbkey = $this->mNamespace == NS_USER ? IP::sanitizeIP( $dbkey ) : $dbkey;
                // Any remaining initial :s are illegal.
                if ( $dbkey !== '' && ':' == $dbkey{0} ) {