From: Ævar Arnfjörð Bjarmason Date: Sat, 7 May 2005 00:47:52 +0000 (+0000) Subject: * Documented, removed $wgUser (not used) and more. X-Git-Tag: 1.5.0alpha2~283 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=067c21a7b1c88543eb380f72eca53b62157c4193;p=lhc%2Fweb%2Fwiklou.git * Documented, removed $wgUser (not used) and more. --- 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() + ); } ?>