Merge branch 'quick-fix-crud' into 'master'

Crud : fix sprintf pbm

See merge request Chill-Projet/chill-bundles!55
This commit is contained in:
Julien Fastré 2021-05-19 13:15:35 +00:00
commit 6bd7a0105d

View File

@ -590,7 +590,7 @@ class CRUDController extends AbstractController
if (NULL === $entity) {
throw $this->createNotFoundException(sprintf("The %s with id %s "
. "is not found"), $this->getCrudName(), $id);
. "is not found", $this->getCrudName(), $id));
}
$response = $this->checkACL($action, $entity);