wiki.techinc.nl/includes/SpecialDebug.php

14 lines
155 B
PHP
Raw Normal View History

<?php
2003-04-14 23:10:40 +00:00
function wfSpecialDebug()
{
global $wgUser, $wgOut;
if ( ! $wgUser->isDeveloper() ) {
$wgOut->developerRequired();
return;
}
phpinfo();
}