Skip to content

Commit

Permalink
Merge pull request #1217 from willkoua/1203-project-querysearch
Browse files Browse the repository at this point in the history
resolution du bug de la requete de recherche de projet
  • Loading branch information
willkoua committed Jun 13, 2016
2 parents 42eb0ab + 0c2f8cd commit 91c43d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Controller/ProjectsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function index()
$query->where(['archived' => 0]);
$query->where(['accepted' => 1]);
if ($name) {
$query->where(['name' => $name]);
$query->where(['name LIKE' => '%' . $name . '%']);
}

$projects = $this->paginate($query);
Expand Down

0 comments on commit 91c43d3

Please sign in to comment.