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