<?
/*========================================*\
| Exero CMS |
|==========================================|
| http://ecms.getox.net |
|https://sourceforge.net/projects/exerocms/|
|==========================================|
| Exero CMS is released under the |
| GNU General Public License (GPL) |
| opensource.org/licenses/gpl-license.php |
\*========================================*/
// Include required files
require("core.php");
require("resource/upgradecore.php");
if($ecms->settings['appver'] == "1.0.0") {
header("Location: upgrade1.php");
} else if($ecms->settings['appver'] == "1.0.1") {
header("Location: upgrade2.php");
} else {
print_header();
print_table_header("Update to Date","2");
print_table_row("Exero CMS is up to date");
print_table_footer();
print_footer();
exit;
}
?>