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 /engine | |
parent | 558f03f0f84a142438de9844b2047be2f050c385 (diff) | |
download | elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.gz elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.bz2 |
Fixes #3567 standardized classes for icons
Diffstat (limited to 'engine')
-rw-r--r-- | engine/lib/input.php | 12 | ||||
-rw-r--r-- | engine/lib/views.php | 4 |
2 files changed, 9 insertions, 7 deletions
diff --git a/engine/lib/input.php b/engine/lib/input.php index 2f68195f2..57e35786f 100644 --- a/engine/lib/input.php +++ b/engine/lib/input.php @@ -301,12 +301,12 @@ function input_livesearch_page_handler($page) { } $output = elgg_view_list_item($entity, array( - 'hover' => false, + 'use_hover' => false, 'class' => 'elgg-autocomplete-item', )); $icon = elgg_view_entity_icon($entity, 'tiny', array( - 'hover' => false, + 'use_hover' => false, )); $result = array( @@ -344,12 +344,12 @@ function input_livesearch_page_handler($page) { } $output = elgg_view_list_item($entity, array( - 'hover' => false, + 'use_hover' => false, 'class' => 'elgg-autocomplete-item', )); $icon = elgg_view_entity_icon($entity, 'tiny', array( - 'hover' => false, + 'use_hover' => false, )); $result = array( @@ -391,12 +391,12 @@ function input_livesearch_page_handler($page) { } $output = elgg_view_list_item($entity, array( - 'hover' => false, + 'use_hover' => false, 'class' => 'elgg-autocomplete-item', )); $icon = elgg_view_entity_icon($entity, 'tiny', array( - 'hover' => false, + 'use_hover' => false, )); $result = array( diff --git a/engine/lib/views.php b/engine/lib/views.php index 2ec56c97e..6ca68ac8c 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -860,7 +860,9 @@ function elgg_view_entity(ElggEntity $entity, $vars = array(), $bypass = true, $ * * @param ElggEntity $entity The entity to display * @param string $size The size: tiny, small, medium, large - * @param array $vars An array of variables to pass to the view + * @param array $vars An array of variables to pass to the view. Some possible + * variables are img_class and link_class. See the + * specific icon view for more parameters. * * @return string HTML to display or false */ |