David Bruchmann
David Bruchmann
If there are no more records to create a relation, the second button is also creating a new relation. So that could be a feature but actually that's perhaps neither...
@georgringer I think a dual license might be justifiable: - for commercial projects 50 € / year - for non-commercial projects free I've chosen the fee relatively low, but if...
Currently GPL is required to publish an extension in TER. The TYPO3 Association could consider this restriction perhaps, here I bring up again the "TYPO3 Association dual license". Nevertheless I...
The whole GPL relates to publishing / distributing. So your statement goes a bit too far. Nevertheless it's important taking the license into account and for public extensions I see...
you've to save the user-choice somewhere, probably a cookie is the easiest and most compatible way. But this option should be optional as not everyone want to make cookies used...
you've to trigger the update-function like explained here: http://tablesorter.com/docs/example-ajax.html
thanks for the instant answer. Don't mind about me, I just wanted to inform. For the case that I discover what's happening I'll keep you updated.
The code with the simply corrected paths is this: ``` 'foreign_types' => [ '0' => [ 'showitem' => ' --palette--;LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_file_reference.imageoverlayPalette;imageoverlayPalette, --palette--;;filePalette' ], \TYPO3\CMS\Core\Resource\File::FILETYPE_TEXT => [ 'showitem' => ' --palette--;LLL:EXT:core/Resources/Private/Language/locallang_tca.xlf:sys_file_reference.imageoverlayPalette;imageoverlayPalette, --palette--;;filePalette'...
the advised way is though to use `overrideChildTca`
I could circumvent it by changing the method like this: ``` protected function replaceUpperAndLowerCase(string $search, string $replace, $haystack): string { if (!is_array($haystack)) { $result = str_replace(ucfirst($search), ucfirst($replace), $haystack); return str_replace(lcfirst($search),...