Index: trunk/extensions/Configure/SpecialViewConfig.php |
— | — | @@ -181,20 +181,15 @@ |
182 | 182 | |
183 | 183 | ## Make user link... |
184 | 184 | $userLink = ''; |
185 | | - $user = ''; |
186 | 185 | if (!$arr['user_wiki'] && !$arr['user_name'] ) { |
187 | 186 | $userLink = ''; # Nothing... |
188 | | - $user = ''; # Nothing... |
189 | 187 | } elseif ( $arr['user_wiki'] == wfWikiId() ) { |
190 | 188 | $userLink = $skin->link( Title::makeTitle( NS_USER, $arr['user_name'] ), $arr['user_name'] ); |
191 | | - $user = $arr['user_name']; |
192 | 189 | } elseif ( class_exists( 'WikiMap' ) && ($wiki = WikiMap::getWiki( $arr['user_wiki'] ) ) ) { |
193 | 190 | $userLink = $skin->makeExternalLink( $wiki->getUrl( 'User:'.$arr['user_name'] ), $arr['user_name'].'@'.$arr['user_wiki'] ); |
194 | | - $user = ''; # Nothing... |
195 | 191 | } else { |
196 | 192 | ## Last-ditch |
197 | 193 | $userLink = $arr['user_name'].'@'.$arr['user_wiki']; |
198 | | - $user = ''; # Nothing... |
199 | 194 | } |
200 | 195 | |
201 | 196 | $actions = array(); |
— | — | @@ -270,7 +265,7 @@ |
271 | 266 | $comment = $arr['reason'] ? $skin->commentBlock( $arr['reason'] ) : ''; |
272 | 267 | |
273 | 268 | $action = $wgLang->commaList( $actions ); |
274 | | - return Xml::tags( 'li', null, wfMsgExt( 'configure-viewconfig-line', array( 'parseinline', 'replaceafter' ), array( $buttons, $datim, $userLink, $action, $comment, $date, $time, $user ) ) )."\n"; |
| 269 | + return Xml::tags( 'li', null, wfMsgExt( 'configure-viewconfig-line', array( 'parseinline', 'replaceafter' ), array( $buttons, $datim, $userLink, $action, $comment, $date, $time ) ) )."\n"; |
275 | 270 | } |
276 | 271 | |
277 | 272 | /** |
Index: trunk/extensions/Configure/Configure.i18n.php |
— | — | @@ -285,8 +285,7 @@ |
286 | 286 | * $4 will be replaced with zero to several links to that version |
287 | 287 | * $5 is the comment, as provided by the user, which may be empty |
288 | 288 | * $6 is the date of the version |
289 | | -* $7 is the time of the version |
290 | | -* $8 is the name of the user who made version, or empty', |
| 289 | +* $7 is the time of the version', |
291 | 290 | 'extensions' => 'Name of special page displayed in [[Special:SpecialPages]].', |
292 | 291 | 'right-configure' => '{{doc-right}}', |
293 | 292 | 'right-configure-all' => '{{doc-right}}', |