fix "+" bug in filtering

This commit is contained in:
Jeremy Lance Uy 2021-05-26 00:49:00 +08:00 committed by fguillot
parent 71b47b2c5a
commit 41102ec161
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ class ProjectHeaderHelper extends Base
{
$search = $this->request->getStringParam('search', $this->userSession->getFilters($project['id']));
$this->userSession->setFilters($project['id'], $search);
return urldecode($search);
return rawurldecode($search);
}
/**