mirror of
https://github.com/friendica/friendica
synced 2024-11-10 06:22:53 +00:00
14 lines
137 B
PHP
14 lines
137 B
PHP
<?php
|
|
/**
|
|
* @file mod/phpinfo.php
|
|
*/
|
|
|
|
function phpinfo_content()
|
|
{
|
|
if (!is_site_admin()) {
|
|
return false;
|
|
}
|
|
|
|
phpinfo();
|
|
exit();
|
|
}
|