aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCash Costello <cash.costello@gmail.com>2012-01-08 15:04:50 -0500
committerCash Costello <cash.costello@gmail.com>2012-01-08 15:04:50 -0500
commit62b03cd61f5b3c837a97e71260790c15be7e4ea2 (patch)
treeac947eb4704cc99976ed7c4f064d35f1f82c08fd
parent35a5ef862d7d28a173ab78b014afc372531fb17e (diff)
downloadelgg-62b03cd61f5b3c837a97e71260790c15be7e4ea2.tar.gz
elgg-62b03cd61f5b3c837a97e71260790c15be7e4ea2.tar.bz2
Fixes #2404 not using full set of query parameters for custom search types
-rw-r--r--mod/search/pages/search/index.php4
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";