1
0
Fork 0

Move phpinfo module to src/Module/Admin

This commit is contained in:
Hypolite Petovan 2019-04-25 23:56:14 -04:00
commit fa4b42c6dd
4 changed files with 34 additions and 15 deletions

View file

@ -1,14 +0,0 @@
<?php
/**
* @file mod/phpinfo.php
*/
function phpinfo_content()
{
if (!is_site_admin()) {
return false;
}
phpinfo();
exit();
}