diff options
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 70 |
1 files changed, 33 insertions, 37 deletions
diff --git a/install.php b/install.php index 48290fdf0..83d0a40c7 100644 --- a/install.php +++ b/install.php @@ -1,42 +1,38 @@ <?php +/** + * Elgg install script + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - /** - * Elgg install script - * - * @package Elgg - * @subpackage Core +/** + * Start the Elgg engine + */ +require_once(dirname(__FILE__) . "/engine/start.php"); +global $CONFIG; - * @author Curverider Ltd +elgg_set_viewtype('failsafe'); +/** + * If we're installed, go back to the homepage + */ +if ((is_installed() && is_db_installed() && datalist_get('installed'))) { + forward("index.php"); +} - * @link http://elgg.org/ - */ +/** + * Install the database + */ +if (!is_db_installed()) { + validate_platform(); + run_sql_script(dirname(__FILE__) . "/engine/schema/mysql.sql"); + init_site_secret(); + system_message(elgg_echo("installation:success")); +} - /** - * Start the Elgg engine - */ - require_once(dirname(__FILE__) . "/engine/start.php"); - global $CONFIG; - - elgg_set_viewtype('failsafe'); - /** - * If we're installed, go back to the homepage - */ - if ((is_installed() && is_db_installed() && datalist_get('installed'))) - forward("index.php"); - - /** - * Install the database - */ - if (!is_db_installed()) { - validate_platform(); - run_sql_script(dirname(__FILE__) . "/engine/schema/mysql.sql"); - init_site_secret(); - system_message(elgg_echo("installation:success")); - } - - /** - * Load the front page - */ - page_draw(elgg_echo("installation:settings"), elgg_view_layout("one_column", elgg_view("settings/install"))); - -?>
\ No newline at end of file +/** + * Load the front page + */ +page_draw(elgg_echo("installation:settings"), elgg_view_layout("one_column", elgg_view("settings/install")));
\ No newline at end of file |