mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00
15 lines
265 B
PHP
15 lines
265 B
PHP
<?php
|
|
require('../../common.php');
|
|
require(SYSTEM . 'functions.php');
|
|
require(SYSTEM . 'init.php');
|
|
require(SYSTEM . 'login.php');
|
|
|
|
if(!admin())
|
|
die('Access denied.');
|
|
|
|
if(!function_exists('phpinfo'))
|
|
die('phpinfo() disabled on this web server.');
|
|
|
|
phpinfo();
|
|
?>
|