diff options
author | Cash Costello <cash.costello@gmail.com> | 2012-01-08 15:04:50 -0500 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2012-01-08 15:04:50 -0500 |
commit | 62b03cd61f5b3c837a97e71260790c15be7e4ea2 (patch) | |
tree | ac947eb4704cc99976ed7c4f064d35f1f82c08fd /mod | |
parent | 35a5ef862d7d28a173ab78b014afc372531fb17e (diff) | |
download | elgg-62b03cd61f5b3c837a97e71260790c15be7e4ea2.tar.gz elgg-62b03cd61f5b3c837a97e71260790c15be7e4ea2.tar.bz2 |
Fixes #2404 not using full set of query parameters for custom search types
Diffstat (limited to 'mod')
-rw-r--r-- | mod/search/pages/search/index.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mod/search/pages/search/index.php b/mod/search/pages/search/index.php index efa3ec037..782c2bae9 100644 --- a/mod/search/pages/search/index.php +++ b/mod/search/pages/search/index.php @@ -145,11 +145,7 @@ foreach ($custom_types as $type) { $data = htmlspecialchars(http_build_query(array( 'q' => $query, - 'entity_subtype' => $entity_subtype, - 'entity_type' => $entity_type, - 'owner_guid' => $owner_guid, 'search_type' => $type, - 'friends' => $friends ))); $url = elgg_get_site_url()."search?$data"; |