Index: trunk/extensions/CheckUser/CheckUser_body.php |
— | — | @@ -816,10 +816,6 @@ |
817 | 817 | # Load user object |
818 | 818 | $user = User::newFromName( $name, false ); |
819 | 819 | $authUser = $wgAuth->getUserInstance( $user ); |
820 | | - # Show if account is local only |
821 | | - if( $authUser->getId() === 0 ) { |
822 | | - $s .= '*'; |
823 | | - } |
824 | 820 | # Add user tool links |
825 | 821 | $s .= $this->sk->userLink( -1 , $name ) . $this->sk->userToolLinks( -1 , $name ); |
826 | 822 | # Add CheckUser link |
— | — | @@ -866,6 +862,10 @@ |
867 | 863 | 'type=block&page=' . urlencode( $userpage->getPrefixedText() ) ); |
868 | 864 | $flags[] = '<strong>(' . $blocklog . ')</strong>'; |
869 | 865 | } |
| 866 | + # Show if account is local only |
| 867 | + if( $authUser->getId() === 0 ) { |
| 868 | + $flags[] = '<strong>(' . wfMsgHtml('checkuser-localonly') . ')</strong>'; |
| 869 | + } |
870 | 870 | # Check for extra user rights... |
871 | 871 | if( $users_ids[$name] ) { |
872 | 872 | $user = User::newFromId( $users_ids[$name] ); |
Index: trunk/extensions/CheckUser/CheckUser.i18n.php |
— | — | @@ -46,6 +46,7 @@ |
47 | 47 | 'checkuser-gblocked' => 'Blocked globally', |
48 | 48 | 'checkuser-locked' => 'Locked', |
49 | 49 | 'checkuser-wasblocked' => 'Previously blocked', |
| 50 | + 'checkuser-localonly' => 'Not unified', |
50 | 51 | 'checkuser-massblock' => 'Block selected users', |
51 | 52 | 'checkuser-massblock-text' => 'Selected accounts will be blocked indefinitely, with autoblocking enabled and account creation disabled. |
52 | 53 | IP addresses will be blocked for 1 week for IP users only and with account creation disabled.', |