Martin Auswöger

Results 436 comments of Martin Auswöger

> Would you though? I think so, my GIT settings do not normalize this. (but this might not always have been the case 🤔) How should we solve this? Always...

Ich kann das Verhalten reproduzieren. Meiner Meinung nach sollte: 1. Die Checkbox „verkürzte Darstellung“ keinen Unterschied machen 2. Mit „laufendes Event ausblenden“ nur das Event mit aktuellem Datum und Startzeit...

I think it is possible. But I’m not sure if it’s worth the effort. We would have to keep track of where every new page originated from, similar to the...

As discussed in the Contao call, our first draft for naming conventions for the new template system: * `content_element/_block_searchable.html.twig` partial template * `content_element/_block_unsearchable.html.twig` partial template * `content_element/_somesing/foo.html.twig` partial template *...

> Then I guess you (or an extension) may have a hook where you execute `html_entity_decode` on the whole buffer. Agree, in a regular Contao 4.9 setup the JSON is...

I think we should do the second one, but without the `strip_tags`: ```php 'contao:title' => StringUtil::decodeEntities($this->replaceInsertTags($objPage->pageTitle ?: $objPage->title)), ```

Not after decoding entities I think. But before might be OK like `StringUtil::decodeEntities(strip_tags($this->replaceInsertTags(…`

> Search for `strip_tags(StringUtil::stripInsertTags(` in the code base to validate. I found occurrences that handle feed `` and `->pageTitle`. > Hence the question is whether we want to replace all...

I think we should be very careful with these changes. Are there no cases where `act=paste` is used together with `pid=`?

Two examples: - `?do=article&id=86&table=tl_content&act=paste&mode=create` in this case, the `id` parameter refers to the parent record from `tl_article` this is the ID we want to get back from `findCurrentId` - `?do=article&id=70&table=tl_content&act=paste&mode=copy`...