From fe4e5568f9cec5d1bf46a3f40b4a99985f7a5abc Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Sun, 16 Jun 2013 07:50:20 -0400 Subject: [PATCH] URL decode contact search string. --- lib/contact.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/contact.php b/lib/contact.php index 56327de..b680982 100644 --- a/lib/contact.php +++ b/lib/contact.php @@ -578,7 +578,7 @@ } } else if ($parameters[0] == "search") { - search_contacts(0, 10, $parameters[1]); + search_contacts(0, 10, urldecode($parameters[1])); } } list($name, $id, $args) = parse_parameters($parameters); -- 2.7.4