* (bug 2019) Wrapped the output of Special:Version in <div dir='ltr'> in order
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 16 May 2005 06:43:33 +0000 (06:43 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Mon, 16 May 2005 06:43:33 +0000 (06:43 +0000)
  to preserve the correct flow of text on RTL wikis.

RELEASE-NOTES
includes/SpecialVersion.php

index fde601c..d5b9b58 100644 (file)
@@ -183,6 +183,8 @@ Various bugfixes, small features, and a few experimental things:
   default (previously this was disabled for no particular reason)
 * dumpBackup.php can dump the full database to Export XML, with current
   revisions only or complete histories.
+* (bug 2019) Wrapped the output of Special:Version in <div dir='ltr'> in order
+  to preserve the correct flow of text on RTL wikis.
 * (bug 2150) Fix tab indexes on edit form
 * (bug 2152) Add missing bgcolor to attribute whitelist for <td> and <th>
 * Group table renamed.....?
index f6233ec..101eb0e 100644 (file)
@@ -15,6 +15,7 @@ function wfSpecialVersion() {
        $dbr =& wfGetDB( DB_SLAVE );
        
        $wgOut->addWikiText( "
+<div dir='ltr'>
 This wiki is powered by '''[http://www.mediawiki.org/ MediaWiki]''',  
 copyright (C) 2001-2005 Magnus Manske, Brion Vibber, Lee Daniel Crocker,
 Tim Starling, Erik Möller, and others.
@@ -36,7 +37,7 @@ or [http://www.gnu.org/copyleft/gpl.html read it online]
 
 * [http://www.mediawiki.org/ MediaWiki]: $wgVersion
 * [http://www.php.net/ PHP]: " . phpversion() . " (" . php_sapi_name() . ")
-* " . $dbr->getSoftwareLink() . ": " . $dbr->getServerVersion()
-       );
+* " . $dbr->getSoftwareLink() . ": " . $dbr->getServerVersion() . "
+</div>" );
 }
 ?>