diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 19:57:40 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-11 19:57:40 +0000 |
commit | dc5b2029c9ce127af3495f6f7adf65b1053f37cd (patch) | |
tree | 16b4097b425a3fc449e8c2397e3e2f54af1e2e83 | |
parent | 4f984fc470900df2a2c18dff02895ea2f230e099 (diff) | |
download | elgg-dc5b2029c9ce127af3495f6f7adf65b1053f37cd.tar.gz elgg-dc5b2029c9ce127af3495f6f7adf65b1053f37cd.tar.bz2 |
forgot the new river view from the previous commit
git-svn-id: http://code.elgg.org/elgg/trunk@9182 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | views/default/river/user/default/profileiconupdate.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/views/default/river/user/default/profileiconupdate.php b/views/default/river/user/default/profileiconupdate.php new file mode 100644 index 000000000..a723c5335 --- /dev/null +++ b/views/default/river/user/default/profileiconupdate.php @@ -0,0 +1,13 @@ +<?php +/** + * Update avatar river view + */ +$subject = $vars['item']->getSubjectEntity(); + +$subject_icon = elgg_view_entity_icon($subject, 'tiny'); + +echo elgg_echo("profile:river:iconupdate"); + +echo '<div class="elgg-river-content clearfix">'; +echo $subject_icon; +echo '</div>'; |