diff options
Diffstat (limited to 'public/admin/index.php')
-rw-r--r-- | public/admin/index.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/admin/index.php b/public/admin/index.php new file mode 100644 index 0000000..41248d3 --- /dev/null +++ b/public/admin/index.php @@ -0,0 +1,19 @@ +<?php +// Version +define('VERSION', '3.0.3.2'); + +// Configuration +if (is_file('config.php')) { + require_once('config.php'); +} + +// Install +if (!defined('DIR_APPLICATION')) { + header('Location: ../install/index.php'); + exit; +} + +// Startup +require_once(DIR_SYSTEM . 'startup.php'); + +start('admin');
\ No newline at end of file |