* @copyright 2019 MyAAC * @link https://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'MyAAC Changelog'; if (!file_exists(BASE . 'CHANGELOG')) { echo 'File CHANGELOG doesn\'t exist.'; return; } $changelog = file_get_contents(BASE . 'CHANGELOG'); $changelog = htmlspecialchars($changelog); // replace URLs with elements $changelog = preg_replace('/\s(\w+:\/\/)(\S+)/', ' \\1\\2', $changelog); $changelog = nl2br($changelog); echo '
' . $changelog . '
';