diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 11:10:16 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-18 11:10:16 +0000 |
commit | 09fba458f79b8b1b1940405911915feade1989bf (patch) | |
tree | bd8d4de9adea9fe1300939a1e823c1e30c141976 /actions/systemsettings | |
parent | d5a0e61b33283eb5e0f042cfd29ab6f8bbd5ae02 (diff) | |
download | elgg-09fba458f79b8b1b1940405911915feade1989bf.tar.gz elgg-09fba458f79b8b1b1940405911915feade1989bf.tar.bz2 |
Fixes #17 - Debug mode toggle. Introduced unset_config() which is also called automatically by set_config(). Also modified the view input/checkboxes to set values on the checkbox.
git-svn-id: https://code.elgg.org/elgg/trunk@961 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 06a40e167..30f501f36 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -33,7 +33,13 @@ datalist_set('default_site',$site->getGUID()); - set_config('language', get_input('language'), $site->getGUID());
+ set_config('language', get_input('language'), $site->getGUID()); + + $debug = get_input('debug'); + if ($debug) + set_config('debug', 1, $site->getGUID()); + else + unset_config('debug', $site->getGUID());
system_message(elgg_echo("installation:configuration:success"));
|