Index: trunk/phase3/includes/Title.php |
— | — | @@ -1922,7 +1922,8 @@ |
1923 | 1923 | // there are numerous ways to present the same IP. Having sp:contribs scan |
1924 | 1924 | // them all is silly and having some show the edits and others not is |
1925 | 1925 | // inconsistent. Same for talk/userpages. Keep them normalized instead. |
1926 | | - $dbkey = $this->mNamespace == NS_USER ? IP::sanitizeIP( $dbkey ) : $dbkey; |
| 1926 | + $dbkey = ($this->mNamespace == NS_USER || $this->mNamespace == NS_USER_TALK) ? |
| 1927 | + IP::sanitizeIP( $dbkey ) : $dbkey; |
1927 | 1928 | // Any remaining initial :s are illegal. |
1928 | 1929 | if ( $dbkey !== '' && ':' == $dbkey{0} ) { |
1929 | 1930 | return false; |