diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-06 21:00:49 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-06 21:00:49 +0000 |
commit | 298158ed2cb212cb79c413696295e8adbc5cecff (patch) | |
tree | 8808a35a77607b1ca8fa675f88ab2403bf2bc004 /actions | |
parent | 1b3bad40a47da7e8322f247073e6f7fc13ea16d3 (diff) | |
download | elgg-298158ed2cb212cb79c413696295e8adbc5cecff.tar.gz elgg-298158ed2cb212cb79c413696295e8adbc5cecff.tar.bz2 |
Fixes #1492: Removed usage info collecting from installation.
git-svn-id: http://code.elgg.org/elgg/trunk@3913 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions')
-rw-r--r-- | actions/systemsettings/install.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 98d958a67..08cbef99d 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -68,17 +68,6 @@ if (get_input('settings') == 'go') { unset_config('debug', $site->getGUID()); } - $usage = get_input('usage'); - if (is_array($usage)) { - $usage = $usage[0]; - } - - if ($usage) { - unset_config('ping_home', $site->getGUID()); - } else { - set_config('ping_home', 'disabled', $site->getGUID()); - } - $api = get_input('api'); if ($api) { unset_config('disable_api', $site->getGUID()); @@ -120,11 +109,6 @@ if (get_input('settings') == 'go') { $cache = new ElggFileCache($dataroot); $cache->delete('view_paths'); - // Now ping home - if ($usage) { - ping_home($site); - } - system_message(elgg_echo("installation:configuration:success")); header("Location: ../../account/register.php"); |