From: Robin Pepermans Date: Fri, 17 Jun 2011 18:11:15 +0000 (+0000) Subject: Remove unneeded div with dir on Special:Version. It used to be English-only (LTR... X-Git-Tag: 1.31.0-rc.0~29459 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=842ad95b13bd5e1b3ecb0738ced4769b0bf3565c;p=lhc%2Fweb%2Fwiklou.git Remove unneeded div with dir on Special:Version. It used to be English-only (LTR-only) and was changed in r51839 but it inherits the page directionality anyway. --- diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 5cf9898c6c..c5d1411559 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -55,8 +55,6 @@ class SpecialVersion extends SpecialPage { $this->outputHeader(); $wgOut->allowClickjacking(); - $wgOut->addHTML( Xml::openElement( 'div', - array( 'dir' => $wgContLang->getDir() ) ) ); $text = $this->getMediaWikiCredits() . $this->softwareInformation() . @@ -67,7 +65,6 @@ class SpecialVersion extends SpecialPage { $wgOut->addWikiText( $text ); $wgOut->addHTML( $this->IPInfo() ); - $wgOut->addHTML( '' ); if ( $wgRequest->getVal( 'easteregg' ) ) { if ( $this->showEasterEgg() ) {