Index: trunk/phase3/includes/Linker.php |
— | — | @@ -1047,7 +1047,7 @@ |
1048 | 1048 | } else { |
1049 | 1049 | $page = Title::makeTitle( NS_USER, $userText ); |
1050 | 1050 | } |
1051 | | - return $this->link( $page, htmlspecialchars( $userText ) ); |
| 1051 | + return $this->link( $page, htmlspecialchars( $userText ), array( 'class' => 'mw-userlink' ) ); |
1052 | 1052 | } |
1053 | 1053 | |
1054 | 1054 | /** |
— | — | @@ -1087,7 +1087,7 @@ |
1088 | 1088 | } |
1089 | 1089 | |
1090 | 1090 | if( $items ) { |
1091 | | - return ' (' . implode( ' | ', $items ) . ')'; |
| 1091 | + return ' <span class="mw-usertoollinks">(' . implode( ' | ', $items ) . ')</span>'; |
1092 | 1092 | } else { |
1093 | 1093 | return ''; |
1094 | 1094 | } |