Ensure searchindex table is created as MyISAM
[lhc/web/wiklou.git] / includes / SpecialDebug.php
1 <?php
2
3 function wfSpecialDebug()
4 {
5 global $wgUser, $wgOut;
6
7 if ( ! $wgUser->isDeveloper() ) {
8 $wgOut->developerRequired();
9 return;
10 }
11 phpinfo();
12 }
13