aboutsummaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-08-31 19:05:21 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-08-31 19:05:21 +0000
commitc5cc2821311012a8a4385a304a043c4b41f2afbb (patch)
tree3703351e4b5d56905eb52547d6129ffa14cb2a32 /install.php
parent775a5f08c501acc565c69659022bc31052677485 (diff)
downloadelgg-c5cc2821311012a8a4385a304a043c4b41f2afbb.tar.gz
elgg-c5cc2821311012a8a4385a304a043c4b41f2afbb.tar.bz2
All line endings are now Unix-style.
git-svn-id: https://code.elgg.org/elgg/trunk@3451 36083f99-b078-4883-b0ff-0f9b5a30f544
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