Leevi Graham
Leevi Graham
Docs are very light to say the least :) The file path is where the exports / imports are stored. It shouldn't have to be outside your ee install.
I'm guessing you're talking about encoding here. All XML needs to be encoded or you can use a CDATA block. Did you export that entry or hand code it?
I think this should be restated as: "Built-in **model** validation"
My solution was to create a [custom form theme](https://symfony.com/doc/current/form/form_themes.html#creating-a-form-theme-in-a-separate-template) and call `{{form_rest(form)}}`. In this example I was overriding [form_div_layout.html.twig](https://github.com/symfony/symfony/blob/7.1/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig) ```twig {%- block form -%} {{ form_start(form) }} {{- form_rest(form) -}}...
Oh man you've made my day!
Thanks for the fix! Unfortunately we've moved on from Redmine to Jira + Greenhopper. For $20 a year and all profits going to charity it was hard to pass up.
I refactored this an wildcards are still proving an issue: ``` php /** * Topic based routing */ $topics = array('surf', 'skate', 'snow'); $contentTypes = array('articles', 'brands', 'places', 'promotions', 'tutorials');...
Ok found a work around which doesn't seem very intuitive is removing the `/` before `:pagination`. Example: `/surf/articles/:pagination` becomes `/surf/articles:pagination`.
@thomasvantuycom I'm not sure it can be done without `extraOptions` with the current code. The way the transforms are cloned explicitly copies the properties across.
@brandonkelly Any thoughts on this?