Two blocking features: IP range blocks, and expiry times configurable block-by-block.
[lhc/web/wiklou.git] / includes / SpecialVersion.php
1 <?
2
3 function wfSpecialVersion()
4 {
5 global $wgUser, $wgOut, $wgVersion;
6 $fname = "wfSpecialVersion";
7
8 $versions = array(
9 "[http://wikipedia.sf.net/ MediaWiki]" => $wgVersion,
10 "[http://www.php.net/ PHP]" => phpversion(),
11 "[http://www.mysql.com/ MySQL]" => mysql_get_server_info()
12 );
13
14 $out = "";
15 foreach( $versions as $module => $ver ) {
16 $out .= ":$module: $ver\n";
17 }
18 $wgOut->addWikiText( $out );
19
20 return;
21 }
22
23 ?>