diff --git a/app/library/App/Controllers/ProjectController.php b/app/library/App/Controllers/ProjectController.php index 019801b..b4c2d64 100644 --- a/app/library/App/Controllers/ProjectController.php +++ b/app/library/App/Controllers/ProjectController.php @@ -48,8 +48,7 @@ class ProjectController extends CrudResourceController { $phqlBuilder = $this->phqlQueryParser->fromQuery($this->query, $this->getResource()); $phqlBuilder - ->andWhere('[' . $this->getResource()->getModel() . '].' . $this->getModelPrimaryKey() . ' = '.$id) - ->limit(1); + ->andWhere('[' . $this->getResource()->getModel() . '].' . $this->getModelPrimaryKey() . ' = '.$id); $this->modifyReadQuery($phqlBuilder); $this->modifyFindQuery($phqlBuilder, $id); -- libgit2 0.21.4