diff options
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..f780d25 --- /dev/null +++ b/public/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('catalog');
\ No newline at end of file |