1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-23 14:44:02 +00:00
friendica-github/mod/phpinfo.php

15 lines
137 B
PHP
Raw Normal View History

<?php
/**
* @file mod/phpinfo.php
*/
function phpinfo_content()
{
if (!is_site_admin()) {
return false;
}
phpinfo();
2018-12-26 00:40:12 -05:00
exit();
}