Index: trunk/extensions/CentralAuth/SpecialCentralAuth.php |
— | — | @@ -247,7 +247,7 @@ |
248 | 248 | 'hidden' => $globalUser->isHidden() ? wfMsg( 'centralauth-admin-yes' ) : wfMsg( 'centralauth-admin-no' ) ); |
249 | 249 | $out = '<ul>'; |
250 | 250 | foreach( $attribs as $tag => $data ) { |
251 | | - $out .= Xml::element( 'li', array( 'id'=>"info_$tag" ), wfMsg( "centralauth-admin-info-$tag" ) . ' ' . $data ); |
| 251 | + $out .= Xml::element( 'li', array(), wfMsg( "centralauth-admin-info-$tag" ) . ' ' . $data ); |
252 | 252 | } |
253 | 253 | $out .= '</ul>'; |
254 | 254 | $wgOut->addHtml( $out ); |
— | — | @@ -273,7 +273,7 @@ |
274 | 274 | |
275 | 275 | function listRemainder( $list ) { |
276 | 276 | ksort( $list ); |
277 | | - $s = '<ul id="list_unattached">'; |
| 277 | + $s = '<ul>'; |
278 | 278 | foreach ( $list as $row ) { |
279 | 279 | $s .= '<li>' . $this->foreignUserLink( $row['wiki'] ) . "</li>\n"; |
280 | 280 | } |
— | — | @@ -288,8 +288,7 @@ |
289 | 289 | Xml::openElement( 'form', |
290 | 290 | array( |
291 | 291 | 'method' => 'post', |
292 | | - 'action' => $this->getTitle( $this->mUserName )->getLocalUrl( 'action=submit' ), |
293 | | - 'id' => 'form_merged' ) ) . |
| 292 | + 'action' => $this->getTitle( $this->mUserName )->getLocalUrl( 'action=submit' ) ) ) . |
294 | 293 | Xml::hidden( 'wpMethod', $action ) . |
295 | 294 | Xml::hidden( 'wpEditToken', $wgUser->editToken() ) . |
296 | 295 | '<table>' . |
— | — | @@ -360,8 +359,7 @@ |
361 | 360 | Xml::element( 'h2', array(), wfMsg( "centralauth-admin-{$action}-title" ) ) . |
362 | 361 | Xml::openElement( 'form', array( |
363 | 362 | 'method' => 'POST', |
364 | | - 'action' => $this->getTitle()->getFullUrl( 'target=' . urlencode( $this->mUserName ) ), |
365 | | - 'id' => "form_$action" ) ) . |
| 363 | + 'action' => $this->getTitle()->getFullUrl( 'target=' . urlencode( $this->mUserName ) ) ) ) . |
366 | 364 | Xml::hidden( 'wpMethod', $action ) . |
367 | 365 | Xml::hidden( 'wpEditToken', $wgUser->editToken() ) . |
368 | 366 | wfMsgExt( "centralauth-admin-{$action}-description", 'parse' ) . |