repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
URL-escape the main page link on the logo
[mediawiki.git]
/
includes
/
SpecialDebug.php
blob
f11c075d18e874194810e31faf9c21924d21c1a3
1
<
?
2
3
function
wfSpecialDebug
()
4
{
5
global
$wgUser
,
$wgOut
;
6
7
if
( !
$wgUser
->
isDeveloper
() ) {
8
$wgOut
->
developerRequired
();
9
return
;
10
}
11
phpinfo
();
12
}
13