diff options
author | cash <cash.costello@gmail.com> | 2011-11-05 17:09:34 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-05 17:09:34 -0400 |
commit | fa0dbc7f8a34597345f7939ca9914438624c3cee (patch) | |
tree | 70f499175aeae36f48a72c9393a520004c4aa7fe /views/default/river | |
parent | 558f03f0f84a142438de9844b2047be2f050c385 (diff) | |
download | elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.gz elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.bz2 |
Fixes #3567 standardized classes for icons
Diffstat (limited to 'views/default/river')
-rw-r--r-- | views/default/river/user/default/profileiconupdate.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/views/default/river/user/default/profileiconupdate.php b/views/default/river/user/default/profileiconupdate.php index 160ffd252..271064a06 100644 --- a/views/default/river/user/default/profileiconupdate.php +++ b/views/default/river/user/default/profileiconupdate.php @@ -17,5 +17,8 @@ $string = elgg_echo('river:update:user:avatar', array($subject_link)); echo elgg_view('river/elements/layout', array( 'item' => $vars['item'], 'summary' => $string, - 'attachments' => elgg_view_entity_icon($subject, 'tiny', array('hover' => false)), + 'attachments' => elgg_view_entity_icon($subject, 'tiny', array( + 'use_hover' => false, + 'use_link' => false, + )), )); |