* @copyright 2017 MyAAC * @link http://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 '