mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-27 01:39:22 +02:00
15 lines
261 B
PHP
15 lines
261 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();
|
|
?>
|