From: Ævar Arnfjörð Bjarmason Date: Mon, 16 May 2005 06:43:33 +0000 (+0000) Subject: * (bug 2019) Wrapped the output of Special:Version in
in order X-Git-Tag: 1.5.0alpha2~163 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22auteur_infos%22%2C%20%22id_auteur=%24id%22%29%20.%20%22?a=commitdiff_plain;h=6415329583304221f31780cd6514c0c9217d50f8;p=lhc%2Fweb%2Fwiklou.git * (bug 2019) Wrapped the output of Special:Version in
in order to preserve the correct flow of text on RTL wikis. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index fde601c5d4..d5b9b58519 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -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
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 and * Group table renamed.....? diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index f6233ec8f4..101eb0e1c1 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -15,6 +15,7 @@ function wfSpecialVersion() { $dbr =& wfGetDB( DB_SLAVE ); $wgOut->addWikiText( " +
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() . " +
" ); } ?>