diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 12:57:33 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-07 12:57:33 +0000 |
commit | d1cb1ac570a5555d7916c4583f2e7bc1b69e5875 (patch) | |
tree | b91f31778f52036af6152dfd9c9fa0276837ee3b | |
parent | b28223311752d70306b1f35e028d7db824d466e1 (diff) | |
download | elgg-d1cb1ac570a5555d7916c4583f2e7bc1b69e5875.tar.gz elgg-d1cb1ac570a5555d7916c4583f2e7bc1b69e5875.tar.bz2 |
Install site secret
git-svn-id: https://code.elgg.org/elgg/trunk@1756 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/install.php b/install.php index e89162533..53f7f68dd 100644 --- a/install.php +++ b/install.php @@ -27,7 +27,8 @@ * Install the database
*/
if (!is_db_installed()) {
- run_sql_script(dirname(__FILE__) . "/engine/schema/mysql.sql");
+ run_sql_script(dirname(__FILE__) . "/engine/schema/mysql.sql"); + init_site_secret();
system_message(elgg_echo("installation:success"));
}
|