Commit b7050dc3 authored by Stéphane Bouvry (perso)'s avatar Stéphane Bouvry (perso)
Browse files

Fix : La recherche des organisations depuis le fiche projet ne donne pas de résultats

parent 9fa7ae1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -207,7 +207,7 @@ class OrganizationController extends AbstractOscarController
        if (strlen($search) < 3) {
            return $this->getResponseBadRequest("Not enough chars (3 required)");
        }
        $organizations = $this->getOrganizationService()->getOrganizationsSearchPaged($search.'*', $page);
        $organizations = $this->getOrganizationService()->getOrganizationsSearchPaged($search, $page);

        $result = [ 'datas' => []];
        foreach ($organizations as $data) {