Index: trunk/extensions/MobileFrontend/MobileFrontend.php |
— | — | @@ -1216,7 +1216,7 @@ |
1217 | 1217 | if ( self::$title->isSpecial( 'Userlogin' ) && self::$isBetaGroupMember ) { |
1218 | 1218 | $userlogin = $this->doc->getElementById( 'userloginForm' ); |
1219 | 1219 | |
1220 | | - if ( $userlogin && get_class($userlogin) === 'DOMElement' ) { |
| 1220 | + if ( $userlogin && get_class( $userlogin ) === 'DOMElement' ) { |
1221 | 1221 | $firstHeading = $this->doc->getElementById( 'firstHeading' ); |
1222 | 1222 | if ( !empty( $firstHeading ) ) { |
1223 | 1223 | $firstHeading->nodeValue = ''; |
— | — | @@ -1307,7 +1307,7 @@ |
1308 | 1308 | } |
1309 | 1309 | |
1310 | 1310 | if ( self::$title->isSpecial( 'Userlogin' ) && self::$isBetaGroupMember ) { |
1311 | | - if ( $userlogin && get_class($userlogin) === 'DOMElement' ) { |
| 1311 | + if ( $userlogin && get_class( $userlogin ) === 'DOMElement' ) { |
1312 | 1312 | $login = $this->renderLogin(); |
1313 | 1313 | $loginNode = $this->doc->importNode( $login, true ); |
1314 | 1314 | $userlogin->appendChild( $loginNode ); |