Changing comments layout preparing for generated documentation with Phpdocumentor
[lhc/web/wiklou.git] / includes / SpecialDebug.php
1 <?php
2 /**
3 * Let developpers receive the full phpinfo output
4 */
5
6 /**
7 *
8 */
9 function wfSpecialDebug() {
10 global $wgUser, $wgOut;
11
12 if ( ! $wgUser->isDeveloper() ) {
13 $wgOut->developerRequired();
14 return;
15 }
16 phpinfo();
17 }