david-saisondor

Results 4 comments of david-saisondor

At first glance, it seems problem resides here: ``` in /src/Configuration/Parser/ContentTypesParser.php:44 foreach ($tempContentTypes as $key => $contentType) { if (is_array($contentType)) { $contentType = $this->parseContentType($key, $contentType); if ($contentType) { $contentTypes[$contentType->getSlug()] =...

As I suspected, this slug problem impacts the app in all over places ; backend menu, selector queries, content parser, routing, container... This is far beyond my skills, since it...

Hello, Symfony uses a compiler pass ([ResolveParameterPlaceHoldersPass()](https://github.com/symfony/dependency-injection/blob/5.4/Compiler/ResolveParameterPlaceHoldersPass.php)) for parsing parameters placeholders and replace them with actual values. As far I know, Bolt Forms doesn't store his configurations in Symfony's container...

I encounter the same problem as you : I have 4 forms with ReCaptcha, and I have to centralize Google keys. I've not tested it yet, but there is a...