diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-12-03 16:54:57 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-12-03 16:54:57 +0000 |
commit | 8f277db1ef5dc21f831c7e05efc4a25c447c1fd8 (patch) | |
tree | dafe482a51093d3e5f52ee86081a2c97ee36c192 /mod/search | |
parent | 43b104bbe77b6174691513ddbadd4c506c5d74c2 (diff) | |
download | elgg-8f277db1ef5dc21f831c7e05efc4a25c447c1fd8.tar.gz elgg-8f277db1ef5dc21f831c7e05efc4a25c447c1fd8.tar.bz2 |
Removed a line breaking description for comments in search.
git-svn-id: http://code.elgg.org/elgg/trunk@3721 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/search_hooks.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/mod/search/search_hooks.php b/mod/search/search_hooks.php index 371a47633..89d4f1dbd 100644 --- a/mod/search/search_hooks.php +++ b/mod/search/search_hooks.php @@ -187,9 +187,6 @@ function search_tags_hook($hook, $type, $value, $params) { $tags = implode(', ', $entity->tags); } - $tags_str = search_get_highlighted_relevant_substrings($tags, $params['query']); - $tags_str = '(' . elgg_echo('tags') . ": $tags_str)"; - // Nick told me my idea was dirty, so I'm hard coding the numbers. $title_tmp = $entity->title; if (elgg_strlen($title_tmp) > 297) { @@ -205,7 +202,9 @@ function search_tags_hook($hook, $type, $value, $params) { $desc_str = $desc_tmp; } - $desc_str = search_get_highlighted_relevant_substrings($tags, $entity->description); + $tags_str = search_get_highlighted_relevant_substrings($tags, $params['query']); + $tags_str = '(' . elgg_echo('tags') . ": $tags_str)"; + $entity->setVolatileData('search_matched_title', $title_str); $entity->setVolatileData('search_matched_description', $desc_str); $entity->setVolatileData('search_matched_extra', $tags_str); |