Remove unneeded div with dir on Special:Version. It used to be English-only (LTR...
authorRobin Pepermans <robin@users.mediawiki.org>
Fri, 17 Jun 2011 18:11:15 +0000 (18:11 +0000)
committerRobin Pepermans <robin@users.mediawiki.org>
Fri, 17 Jun 2011 18:11:15 +0000 (18:11 +0000)
includes/specials/SpecialVersion.php

index 5cf9898..c5d1411 100644 (file)
@@ -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( '</div>' );
 
                if ( $wgRequest->getVal( 'easteregg' ) ) {
                        if ( $this->showEasterEgg() ) {