diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 15:20:46 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-02-15 15:20:46 +0000 |
commit | a210406591f6a97d9f3d90df0dd375fcca3571f4 (patch) | |
tree | 5e69ba449395f96120e80e2cafc69a7f8a21ec47 /install.php | |
parent | a06ecffa834ac26fd4e3d353c8216c9ee3525fca (diff) | |
download | elgg-a210406591f6a97d9f3d90df0dd375fcca3571f4.tar.gz elgg-a210406591f6a97d9f3d90df0dd375fcca3571f4.tar.bz2 |
Added the concept of a site_id to msot of the database tables. Also some extra installation stuff.
git-svn-id: https://code.elgg.org/elgg/trunk@43 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/install.php b/install.php index 3be2b3c78..35d4febd6 100644 --- a/install.php +++ b/install.php @@ -20,8 +20,8 @@ /**
* If we're installed, go back to the homepage
*/
- if (is_installed())
- forward();
+ if (is_installed() && is_db_installed())
+ forward("index.php");
/**
* Install the database
|