diff options
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 59d784df6..a7a15b29d 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -41,7 +41,8 @@ $site = new ElggSite();
$site->name = get_input('sitename');
$site->url = get_input('wwwroot'); - $site->description = get_input('sitedescription');
+ $site->description = get_input('sitedescription'); + $site->email = get_input('siteemail');
$site->access_id = 2; // The site is public
$guid = $site->save();
@@ -70,7 +71,14 @@ if ($usage) unset_config('ping_home', $site->getGUID()); else - set_config('ping_home', 'disabled', $site->getGUID());
+ set_config('ping_home', 'disabled', $site->getGUID()); + + $api = get_input('api'); + if ($api) + unset_config('disable_api', $site->getGUID()); + else + set_config('disable_api', 'disabled', $site->getGUID()); +
// activate some plugins by default enable_plugin('profile', $site->getGUID()); |