diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 12:52:17 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-11 12:52:17 +0000 |
commit | 0d824354c94d69b08345cdf8bf322aa07b4958c3 (patch) | |
tree | f16a06df7403072d9d27b0b4bf0af74814fbf8cb /actions/usersettings | |
parent | 0a93b4d2dacd35c17ef998e50d7d60e53e720825 (diff) | |
download | elgg-0d824354c94d69b08345cdf8bf322aa07b4958c3.tar.gz elgg-0d824354c94d69b08345cdf8bf322aa07b4958c3.tar.bz2 |
Refs #210 & #211 : Some more core settings / admin pages moved to use admin_gatekeeper. Install script action now also refuses to be run if the site has already been installed.
git-svn-id: https://code.elgg.org/elgg/trunk@1824 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/usersettings')
-rw-r--r-- | actions/usersettings/save.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/usersettings/save.php b/actions/usersettings/save.php index 6322369bc..5b1b9f736 100644 --- a/actions/usersettings/save.php +++ b/actions/usersettings/save.php @@ -12,7 +12,8 @@ require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
global $CONFIG;
- gatekeeper();
+ gatekeeper(); + action_gatekeeper();
trigger_plugin_hook('usersettings:save','user');
|