diff options
Diffstat (limited to 'mod/profile/actions')
-rw-r--r-- | mod/profile/actions/edit.php | 2 | ||||
-rw-r--r-- | mod/profile/actions/iconupload.php | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mod/profile/actions/edit.php b/mod/profile/actions/edit.php index e7f307756..7a4716646 100644 --- a/mod/profile/actions/edit.php +++ b/mod/profile/actions/edit.php @@ -63,6 +63,8 @@ // Notify of profile update
trigger_elgg_event('profileupdate',$user->type,$user);
+ //add to river
+ add_to_river('river/user/default/profileupdate','update',$_SESSION['user']->guid,$_SESSION['user']->guid);
system_message(elgg_echo("profile:saved"));
diff --git a/mod/profile/actions/iconupload.php b/mod/profile/actions/iconupload.php index db948b36a..aec433bbd 100644 --- a/mod/profile/actions/iconupload.php +++ b/mod/profile/actions/iconupload.php @@ -59,6 +59,9 @@ system_message(elgg_echo("profile:icon:uploaded"));
trigger_elgg_event('profileiconupdate',$_SESSION['user']->type,$_SESSION['user']);
+
+ //add to river
+ add_to_river('river/user/default/profileiconupdate','update',$_SESSION['user']->guid,$_SESSION['user']->guid);
} else {
system_message(elgg_echo("profile:icon:notfound"));
|