From 067c21a7b1c88543eb380f72eca53b62157c4193 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 7 May 2005 00:47:52 +0000 Subject: [PATCH] * Documented, removed $wgUser (not used) and more. --- includes/SpecialVersion.php | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/includes/SpecialVersion.php b/includes/SpecialVersion.php index 553ed8c325..f6233ec8f4 100644 --- a/includes/SpecialVersion.php +++ b/includes/SpecialVersion.php @@ -1,5 +1,6 @@ addWikiText( " This wiki is powered by '''[http://www.mediawiki.org/ MediaWiki]''', copyright (C) 2001-2005 Magnus Manske, Brion Vibber, Lee Daniel Crocker, @@ -30,20 +32,11 @@ GNU General Public License for more details. You should have received [{{SERVER}}$wgScriptPath/COPYING a copy of the GNU General Public License] along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -or [http://www.gnu.org/copyleft/gpl.html read it online]"); - $versions = array( - "[http://wikipedia.sf.net/ MediaWiki]" => $wgVersion, - "[http://www.php.net/ PHP]" => phpversion() . " (" . php_sapi_name() . ")" - ); - - $dbr =& wfGetDB( DB_SLAVE ); - $dblink = $dbr->getSoftwareLink(); - $versions[$dblink] = $dbr->getServerVersion(); - - $out = ''; - foreach( $versions as $module => $ver ) { - $out .= "*$module: $ver\n"; - } - $wgOut->addWikiText( $out ); +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() + ); } ?> -- 2.20.1