aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mod/search/index.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/search/index.php b/mod/search/index.php
index 806c2a0d9..ee6da32a8 100644
--- a/mod/search/index.php
+++ b/mod/search/index.php
@@ -89,10 +89,10 @@ foreach ($custom_types as $type) {
$label = "search_types:$type";
$data = htmlspecialchars(http_build_query(array(
- 'q' => urlencode($query),
+ 'q' => $query,
'entity_subtype' => $entity_subtype,
- 'entity_type' => urlencode($entity_type),
- 'owner_guid' => urlencode($owner_guid),
+ 'entity_type' => $entity_type,
+ 'owner_guid' => $owner_guid,
'search_type' => $type,
'friends' => $friends
)));