fmarchalemisys
fmarchalemisys
I'm still having troubles with this issue. My Symfony code only has a `messages.fr.yml` file. If the requested locale is fr_BE, the generated `translations.js` file is empty except for this:...
I found a working solution. All I had to do was to add the "locales" parameter when loading `translation.js`: {% set locales = app.request.locale|fullLocales %} Here, `locales` ends up as...
As far as I can tell, [dbrumann's PR](https://github.com/symfony/monolog-bundle/pull/357/commits/541e6e56a0b114ddf1dbd08c7392337677b48cae) fix the same issue but only for the level. I'm faced with the issue on the user name and password.
Due to the hard dependency between `RequestBodyParamConverter` and Sensio's extra bundle, it is not possible to get rid of the latter without getting an exception from `ConfigurationCheckPass`. I understand, from...
@mbabker thanks for the quick answer. I'm indeed trying to remove sensio's extra bundle. `fos_rest.body_converter.enabled` is set to false. It does remove the dependency on `ParamConverter`. But `FOS\RestBundle\Controller\Annotations\View` extends from...
Same problem exists in v3.4.0. It is caused by https://github.com/Bttstrp/bootstrap-switch/blob/2b316be8001254ef9f6e229144b625c4674560cb/src/js/bootstrap-switch.js#L15 The filter is wrong. I believe it should be ```` return [ state ? 'on' : 'off', size, disabled ?...