Commit 36a7971f authored by Mark Harding's avatar Mark Harding

(fix): decode search query

parent be1bb7c5
No related merge requests found
Pipeline #70780093 running with stages
......@@ -121,7 +121,7 @@ class feeds implements Interfaces\Api
$asActivities = (bool) ($_GET['as_activities'] ?? true);
$query = $_GET['query'] ?? null;
$query = isset($_GET['query']) ? urldecode($_GET['query']) : null;
$container_guid = $_GET['container_guid'] ?? null;
$custom_type = isset($_GET['custom_type']) && $_GET['custom_type'] ? [$_GET['custom_type']] : null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment