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/lib/input.php | |
parent | 558f03f0f84a142438de9844b2047be2f050c385 (diff) | |
download | elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.gz elgg-fa0dbc7f8a34597345f7939ca9914438624c3cee.tar.bz2 |
Fixes #3567 standardized classes for icons
Diffstat (limited to 'engine/lib/input.php')
-rw-r--r-- | engine/lib/input.php | 12 |
1 files changed, 6 insertions, 6 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( |