/* Information ************************************************************************** Project : AKP By PHROSTWAVE (AK Nova) Original Project : T-Xore 0.0.4 By BOGAA This is licensed under a GPL, which means you can redistribute it, and modify it to your likings. Also, a GPL means that the authors CANNOT be held liable for ANYTHING that happens when using this script, including copyright violations and anything else that could and shouldnt happen. You should read your copy of the GPL license at SITE.COM/GPL.PHP if havent already read it! Bogaa's Homepage : http://www.meganova.org Phrostwave's Homepage : http://aknova.info Project Homepage : http://forums.phrostwave.com | AK Project Thread Includes various contributions from many members of Filesoup, and tons of other websites! I try to put all of the names and/or websites of the authors, and include their original notes, but if I miss any feel free to bitch =P */ require_once '../config.php'; require_once 'secure.php'; connect ($dbhost, $dbuser, $dbpass, $database); adminheader('AKP Version Check'); $file = file_get_contents('http://aknova.info/source/version.txt'); $vars = explode('|',$file); if ($vars[0] == $akversion) { echo '
The version you are using is '.$akversion.'
'; echo 'Please remember to report any bugs to arctic@phrostwave.com!
'; } else { echo 'The latest version available is '; include 'http://aknova.info/source/version.txt'; echo '!
'; echo 'Please update your version!
'; } footer(); ?>