diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 20:41:19 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-10-14 20:41:19 +0000 |
commit | 12d286988dbcdff5aad3620838e7ab777ac67a92 (patch) | |
tree | 9d73437fbfb39f3f9f3c27852e70ec1f71aed0eb /actions/notifications/settings | |
parent | 501c0e13cc4db687abb36a937709f8e9de643339 (diff) | |
download | elgg-12d286988dbcdff5aad3620838e7ab777ac67a92.tar.gz elgg-12d286988dbcdff5aad3620838e7ab777ac67a92.tar.bz2 |
Standardized actions/*
git-svn-id: http://code.elgg.org/elgg/trunk@3542 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/notifications/settings')
-rw-r--r-- | actions/notifications/settings/usersettings/save.php | 57 |
1 files changed, 25 insertions, 32 deletions
diff --git a/actions/notifications/settings/usersettings/save.php b/actions/notifications/settings/usersettings/save.php index 41e9e2b17..159dd501b 100644 --- a/actions/notifications/settings/usersettings/save.php +++ b/actions/notifications/settings/usersettings/save.php @@ -1,35 +1,28 @@ <?php - /** - * Elgg notifications user preference save acion. - * - * @package Elgg - * @subpackage Core - * @author Curverider Ltd - * @link http://elgg.org/ - */ +/** + * Elgg notifications user preference save acion. + * + * @package Elgg + * @subpackage Core + * @author Curverider Ltd + * @link http://elgg.org/ + */ - // Method - $method = get_input('method'); - gatekeeper(); - - $result = false; - foreach ($method as $k => $v) - { - $result = set_user_notification_setting($_SESSION['user']->guid, $k, ($v == 'yes') ? true : false); - - if (!$result) - { - register_error(elgg_echo('notifications:usersettings:save:fail')); - //forward($_SERVER['HTTP_REFERER']); - - //exit; - } - } - - if ($result) - system_message(elgg_echo('notifications:usersettings:save:ok')); - else +// Method +$method = get_input('method'); +gatekeeper(); + +$result = false; +foreach ($method as $k => $v) { + $result = set_user_notification_setting($_SESSION['user']->guid, $k, ($v == 'yes') ? true : false); + + if (!$result) { register_error(elgg_echo('notifications:usersettings:save:fail')); - - //forward($_SERVER['HTTP_REFERER']); -?>
\ No newline at end of file + } +} + +if ($result) { + system_message(elgg_echo('notifications:usersettings:save:ok')); +} else { + register_error(elgg_echo('notifications:usersettings:save:fail')); +}
\ No newline at end of file |