Oleg Andreyev

Results 116 comments of Oleg Andreyev

We've found another issue but under Edge: ``` Calling delete on '0' is not allowed in strict mode ``` Near this line: ``` if (arguments[i].hasOwnProperty(k)) { delete arguments[i][k]; } ```

If you wanna override `vendors` template it must go either into app folder. or you should inherit bundle that you wanna override - http://symfony.com/doc/current/cookbook/bundles/inheritance.html#overriding-resources-templates-routing-etc - http://symfony.com/doc/current/book/templating.html#overriding-bundle-templates

Then probably you need cascading, you need to specify paths where `FileLocator` should look. https://github.com/liip/LiipThemeBundle#change-theme-cascading-order

We've done something similar, but we've done with separate configs

Why do you want do that? To me theme list should be defined permanently in configs, otherwise it's something that you don't control.

@JHGitty now it makes sense, I'm also +1 for idea.

@wizhippo I my company we've have quite complicated template inheritance, and we've achieved that using `path_patterns` will all paths.

For this purpose Symfony has cache warmer and bundle is replacing `templating.cache_warmer.template_paths` with `liip_theme.templating.cache_warmer.template_paths`. And [here](https://github.com/symfony/symfony/blob/master/src/Symfony/Component/HttpKernel/Kernel.php#L569) Kernel is deciding call it or no.

Can you describe your case? How you're running your project?