]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
forgot the new river view from the previous commit
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 11 Jun 2011 19:57:40 +0000 (19:57 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 11 Jun 2011 19:57:40 +0000 (19:57 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@9182 36083f99-b078-4883-b0ff-0f9b5a30f544

views/default/river/user/default/profileiconupdate.php [new file with mode: 0644]

diff --git a/views/default/river/user/default/profileiconupdate.php b/views/default/river/user/default/profileiconupdate.php
new file mode 100644 (file)
index 0000000..a723c53
--- /dev/null
@@ -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>';