aboutsummaryrefslogtreecommitdiffstats
path: root/includes/SpecialDebug.php
blob: 9bac259a3deca4aff0722380eb8a7fde48d0b662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

function wfSpecialDebug()
{
	global $wgUser, $wgOut;

	if ( ! $wgUser->isDeveloper() ) {
		$wgOut->developerRequired();
		return;
	}
	phpinfo();
}