From eaddae88046f037405757679a1c24461ec0d8dbe Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 29 Sep 2008 12:03:13 +0000 Subject: Closes #383 & #384 git-svn-id: https://code.elgg.org/elgg/trunk@2144 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/systemsettings/install.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'actions/systemsettings/install.php') 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()); -- cgit v1.2.3