aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2011-10-14 06:16:14 -0400
committerCash Costello <cash.costello@gmail.com>2011-10-14 06:16:14 -0400
commit164234083c0bf56407442ee4214e7f42ebca7113 (patch)
treeea77b55684fc96d7df7fa66637b19e97dceea423
parent2b6380b5c70f6b4be6976ac735b3175621dfad30 (diff)
downloadelgg-164234083c0bf56407442ee4214e7f42ebca7113.tar.gz
elgg-164234083c0bf56407442ee4214e7f42ebca7113.tar.bz2
Fixes #3977 not showing hover menu on avatar update in river
-rw-r--r--views/default/river/user/default/profileiconupdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/river/user/default/profileiconupdate.php b/views/default/river/user/default/profileiconupdate.php
index 5c96747bd..90daab1a7 100644
--- a/views/default/river/user/default/profileiconupdate.php
+++ b/views/default/river/user/default/profileiconupdate.php
@@ -18,5 +18,5 @@ $string = elgg_echo('river:update:user:avatar', array($subject_link));
echo elgg_view('river/item', array(
'item' => $vars['item'],
'summary' => $string,
- 'attachments' => elgg_view_entity_icon($subject, 'tiny'),
+ 'attachments' => elgg_view_entity_icon($subject, 'tiny', array('hover' => false)),
));