From 94efe786cbea3c145223b604b142d03fc8b5b5ea Mon Sep 17 00:00:00 2001 From: "florian.azizian" <florian.azizian@maarch.org> Date: Wed, 26 Jun 2019 11:21:33 +0100 Subject: [PATCH] FIX #10771 TIME 0:05 autocomplete user Maarch Parapheur with spaces --- src/core/controllers/AutoCompleteController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/controllers/AutoCompleteController.php b/src/core/controllers/AutoCompleteController.php index b8db888f104..423a3910f9b 100755 --- a/src/core/controllers/AutoCompleteController.php +++ b/src/core/controllers/AutoCompleteController.php @@ -147,7 +147,7 @@ class AutoCompleteController } $curlResponse = CurlModel::execSimple([ - 'url' => rtrim($url, '/') . '/rest/autocomplete/users?search='.$data['search'].$exclude, + 'url' => rtrim($url, '/') . '/rest/autocomplete/users?search='.urlencode($data['search']).$exclude, 'basicAuth' => ['user' => $userId, 'password' => $password], 'headers' => ['content-type:application/json'], 'method' => 'GET' -- GitLab