* @copyright 2017 MyAAC * @version 0.1.2 * @link http://my-aac.org */ defined('MYAAC') or die('Direct access not allowed!'); $title = 'Version check'; // fetch version //$file = @fopen('http://my-aac.org/VERSION', 'r') or die('Error while fetching version.'); //$myaac_version = fgets($file); $myaac_version = file_get_contents('http://my-aac.org/VERSION'); // compare them if(version_compare($myaac_version, MYAAC_VERSION) <= 0) echo '
MyAAC latest version is ' . $myaac_version . '. You\'re using the latest version.
View CHANGELOG ' . generateLink(ADMIN_URL . '?p=changelog', 'here') . '
You\'re using outdated version.
Your version: ' . MYAAC_VERSION . '
Latest version: ' . $myaac_version . '
Download available at: www.my-aac.org