diff options
author | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-19 17:15:35 +0000 |
---|---|---|
committer | nickw <nickw@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-19 17:15:35 +0000 |
commit | f820b6edcd3b2b22d64aef71b2750253d2bcafcd (patch) | |
tree | 564646570801f6e29c2dcf1f325e6ef628cc5ff8 /actions/systemsettings | |
parent | 985fad83ae06027c9ba92915b6f253815e7537cc (diff) | |
download | elgg-f820b6edcd3b2b22d64aef71b2750253d2bcafcd.tar.gz elgg-f820b6edcd3b2b22d64aef71b2750253d2bcafcd.tar.bz2 |
Adding debug options to admin site settings.
Debugging errors and warnings to screen. If notice level is enabled, output is sent to system log file.
git-svn-id: http://code.elgg.org/elgg/trunk@3563 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings')
-rw-r--r-- | actions/systemsettings/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index 819ef08ee..ef606315b 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -62,7 +62,7 @@ if (get_input('settings') == 'go') { $debug = get_input('debug'); if ($debug) { - set_config('debug', 1, $site->getGUID()); + set_config('debug', $debug, $site->getGUID()); } else { unset_config('debug', $site->getGUID()); } |