* @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Logs viewer'; ?>

Logs:

Log name Last updated
Log name Last updated

' . $file . '

'; echo nl2br(file_get_contents($aac_path_logs . $file)); echo '
'; } else if (file_exists($server_path_logs . $file)) { echo '

' . $file . '

'; echo nl2br(file_get_contents($server_path_logs . $file)); echo '
'; } else echo 'Specified file does not exist.'; } else echo 'Invalid file name specified.'; } ?>