diff --git a/admin/index.php b/admin/index.php index 2045059c..35f4d536 100644 --- a/admin/index.php +++ b/admin/index.php @@ -1 +1,49 @@ -install/ directory exists. Please visit this url to start MyAAC Installation.
Delete install/ directory if you already installed MyAAC.
Remember to REFRESH this page when you\'re done!'); } $content = ''; // validate page $page = isset($_GET['p']) ? $_GET['p'] : ''; if(empty($page) || preg_match("/[^a-zA-Z0-9_\-]/", $page)) $page = 'dashboard'; $page = strtolower($page); define('PAGE', $page); require(SYSTEM . 'functions.php'); require(SYSTEM . 'init.php'); require(SYSTEM . 'status.php'); require(SYSTEM . 'login.php'); require(ADMIN . 'includes/functions.php'); // if we're not logged in - show login box if(!$logged || !admin()) { $page = 'login'; } // include our page $file = SYSTEM . 'pages/admin/' . $page . '.php'; if(!@file_exists($file)) { $page = '404'; $file = SYSTEM . 'pages/404.php'; } ob_start(); include($file); $content .= ob_get_contents(); ob_end_clean(); // template $template_path = 'templates/clean/'; require(ADMIN . $template_path . 'template.php'); ?> \ No newline at end of file +install/ directory exists. Please visit this url to start MyAAC Installation.
Delete install/ directory if you already installed MyAAC.
Remember to REFRESH this page when you\'re done!'); +} + +$content = ''; + +// validate page +$page = isset($_GET['p']) ? $_GET['p'] : ''; +if(empty($page) || preg_match("/[^a-zA-Z0-9_\-]/", $page)) + $page = 'dashboard'; + +$page = strtolower($page); +define('PAGE', $page); + +require(SYSTEM . 'functions.php'); +require(SYSTEM . 'init.php'); +require(SYSTEM . 'status.php'); +require(SYSTEM . 'login.php'); +require(ADMIN . 'includes/functions.php'); + +// if we're not logged in - show login box +if(!$logged || !admin()) { + $page = 'login'; +} + +// include our page +$file = SYSTEM . 'pages/admin/' . $page . '.php'; +if(!@file_exists($file)) { + $page = '404'; + $file = SYSTEM . 'pages/404.php'; +} + +ob_start(); +include($file); + +$content .= ob_get_contents(); +ob_end_clean(); + +// template +$template_path = 'template/'; +require(ADMIN . $template_path . 'template.php'); +?>