diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-10-14 06:16:14 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-10-14 06:16:14 -0400 |
commit | 164234083c0bf56407442ee4214e7f42ebca7113 (patch) | |
tree | ea77b55684fc96d7df7fa66637b19e97dceea423 /views | |
parent | 2b6380b5c70f6b4be6976ac735b3175621dfad30 (diff) | |
download | elgg-164234083c0bf56407442ee4214e7f42ebca7113.tar.gz elgg-164234083c0bf56407442ee4214e7f42ebca7113.tar.bz2 |
Fixes #3977 not showing hover menu on avatar update in river
Diffstat (limited to 'views')
-rw-r--r-- | views/default/river/user/default/profileiconupdate.php | 2 |
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)), )); |