From 6415329583304221f31780cd6514c0c9217d50f8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Mon, 16 May 2005 06:43:33 +0000 Subject: [PATCH] * (bug 2019) Wrapped the output of Special:Version in
in order to preserve the correct flow of text on RTL wikis. --- RELEASE-NOTES | 2 ++ includes/SpecialVersion.php | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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() . " +
" ); } ?> -- 2.20.1