From 842ad95b13bd5e1b3ecb0738ced4769b0bf3565c Mon Sep 17 00:00:00 2001 From: Robin Pepermans Date: Fri, 17 Jun 2011 18:11:15 +0000 Subject: [PATCH] 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. --- includes/specials/SpecialVersion.php | 3 --- 1 file changed, 3 deletions(-) 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() ) { -- 2.20.1