diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-05 10:04:00 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-05 10:04:00 +0000 |
commit | abb9afe42c7cb39666d0ef5611c164c38eed2324 (patch) | |
tree | cf6bac4f4336cb5de150488512f7005ba51bb23a | |
parent | 98714299f704936d739ad8486a4fd0053fc56ddf (diff) | |
download | elgg-abb9afe42c7cb39666d0ef5611c164c38eed2324.tar.gz elgg-abb9afe42c7cb39666d0ef5611c164c38eed2324.tar.bz2 |
Added profile updates to the notification handler
git-svn-id: https://code.elgg.org/elgg/trunk@2652 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/profile/start.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/profile/start.php b/mod/profile/start.php index 96863881f..f8899226b 100644 --- a/mod/profile/start.php +++ b/mod/profile/start.php @@ -265,7 +265,8 @@ register_elgg_event_handler('init','system','profile_init',1); register_elgg_event_handler('init','system','profile_fields_setup', 10000); // Ensure this runs after other plugins - register_elgg_event_handler('pagesetup','system','profile_pagesetup'); + register_elgg_event_handler('pagesetup','system','profile_pagesetup');
+ register_elgg_event_handler('profileupdate','all','object_notifications'); // Register actions
|