blob: 3690860ef0f0c15bbf558f241b0e7bb7b9d6589a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
/**
* Aggregate action for saving settings
*
* @package Elgg
* @subpackage Core
* @link http://elgg.org/
*/
global $CONFIG;
gatekeeper();
action_gatekeeper();
trigger_plugin_hook('usersettings:save','user');
forward($_SERVER['HTTP_REFERER']);
|