aboutsummaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'install.php')
-rw-r--r--install.php70
1 files changed, 35 insertions, 35 deletions
diff --git a/install.php b/install.php
index 50447941a..48290fdf0 100644
--- a/install.php
+++ b/install.php
@@ -1,42 +1,42 @@
-<?php
-
- /**
- * Elgg install script
- *
- * @package Elgg
- * @subpackage Core
+<?php
- * @author Curverider Ltd
+ /**
+ * Elgg install script
+ *
+ * @package Elgg
+ * @subpackage Core
- * @link http://elgg.org/
- */
-
- /**
- * Start the Elgg engine
- */
- require_once(dirname(__FILE__) . "/engine/start.php");
+ * @author Curverider Ltd
+
+ * @link http://elgg.org/
+ */
+
+ /**
+ * 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
- */
+ 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();
+ 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")));
-
+ 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