diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 19:14:25 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 19:14:25 +0000 |
commit | 4f984fc470900df2a2c18dff02895ea2f230e099 (patch) | |
tree | 1a6329ac45a354cd121fa4dd864bd888eedc15d8 /actions/avatar/crop.php | |
parent | bebc9a864caf99983e28e6d6885a15a9d3b14cd4 (diff) | |
download | elgg-4f984fc470900df2a2c18dff02895ea2f230e099.tar.gz elgg-4f984fc470900df2a2c18dff02895ea2f230e099.tar.bz2 |
added user avatar river messages back
git-svn-id: http://code.elgg.org/elgg/trunk@9181 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/avatar/crop.php')
-rw-r--r-- | actions/avatar/crop.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/actions/avatar/crop.php b/actions/avatar/crop.php index ed5faecfa..9c57530ae 100644 --- a/actions/avatar/crop.php +++ b/actions/avatar/crop.php @@ -65,5 +65,8 @@ $owner->y1 = $y1; $owner->y2 = $y2; system_message(elgg_echo('avatar:crop:success')); +$view = 'river/user/default/profileiconupdate'; +elgg_delete_river(array('subject_guid' => $owner->guid, 'view' => $view)); +add_to_river($view, 'update', $owner->guid, $owner->guid); forward(REFERER); |