mmodler
mmodler
We just had a broken website with "Root page cannot have children" - are there plans to fix this?
Thanks @tomhelmer ! We had broken sites because of this issue but we had no info how to reproduce. Now its clear.
I just repaired a broken production site with "Root page cannot have children". Any news on this?
We see this issue in v3.3.31too. Its very confusing for the content editor, because the workflow is often edit - preview - save when good.
I'm facing a similar situation right now. With barryvdh/twigbridge i had this working piece of twig logic in my template: ``` {% set foundDate = Carbon.create(2003, 8, 19, 0) %}...
Next thing with "Twig_Markup" security. In my tpl i tried to use dump (with twigbridge debug true): ``` {{ dump(foundDate) }} ``` Result: ``` An exception has been thrown during...
Atm its very confusing, i digged a little deeper into it with autoescape = true: ``` 'facades' => [ ... 'Form' => [], ... ], ``` I would expect that...
I only had Form [] withour any is_safe setting. So i would expect that my autoescaping = true was considered, but all html output was raw.
Ah its too hot here - i have used the raw filter in my form view. But in general, what is the purpose of is_safe? Minimizing the risk that template...