Index: trunk/phase3/includes/SkinTemplate.php |
— | — | @@ -980,8 +980,7 @@ |
981 | 981 | } |
982 | 982 | |
983 | 983 | if( $this->mTitle->getNamespace() == NS_USER || $this->mTitle->getNamespace() == NS_USER_TALK ) { |
984 | | - $parts = explode( '/', $this->mTitle->getText() ); |
985 | | - $rootUser = $parts[0]; |
| 984 | + $rootUser = explode( '/', $this->mTitle->getText(), 1 ); |
986 | 985 | $id = User::idFromName( $rootUser ); |
987 | 986 | $ip = User::isIP( $rootUser ); |
988 | 987 | } else { |