mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

* Part 1 Removing closing tags when no HTML or other output comes after the last PHP codeblock. * Further removals * nothing --------- Co-authored-by: slawkens <slawkens@gmail.com>
16 lines
288 B
PHP
16 lines
288 B
PHP
<?php
|
|
define('MYAAC_ADMIN', true);
|
|
|
|
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();
|