diff options
Diffstat (limited to 'mod/search')
-rw-r--r-- | mod/search/views/default/search/listing.php | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/mod/search/views/default/search/listing.php b/mod/search/views/default/search/listing.php index 36032940d..5142e1fe5 100644 --- a/mod/search/views/default/search/listing.php +++ b/mod/search/views/default/search/listing.php @@ -22,7 +22,8 @@ $query = htmlspecialchars(http_build_query( 'entity_subtype' => $vars['params']['subtype'], 'limit' => get_input('limit', 10), 'offset' => get_input('offset', 0), - 'search_type' => 'comments', + 'search_type' => $vars['params']['search_type'], + //@todo include vars for sorting, order, and friend-only. ) )); @@ -67,17 +68,6 @@ if (array_key_exists('search_type', $vars['params']) $type_str = $search_type_str; } -$query = htmlspecialchars(http_build_query( - array( - 'q' => $vars['params']['query'], - 'entity_type' => $vars['params']['type'], - 'entity_subtype' => $vars['params']['subtype'], - 'search_type' => 'entities', - ) -)); - -$url = "{$vars['url']}pg/search?$query"; - // get pagination if (array_key_exists('pagination', $vars['params']) && $vars['params']['pagination']) { $nav .= elgg_view('navigation/pagination',array( |