19 lines
283 B
PHP
19 lines
283 B
PHP
<?php
|
|
/**
|
|
* Let developpers receive the full phpinfo output
|
|
* @package MediaWiki
|
|
* @subpackage SpecialPage
|
|
*/
|
|
|
|
/**
|
|
*
|
|
*/
|
|
function wfSpecialDebug() {
|
|
global $wgUser, $wgOut;
|
|
|
|
if ( ! $wgUser->isAllowed('siteadmin') ) {
|
|
$wgOut->developerRequired();
|
|
return;
|
|
}
|
|
phpinfo();
|
|
}
|