Skip to content
Snippets Groups Projects
Commit afa9cdfa authored by Wouter Wolters's avatar Wouter Wolters Committed by Markus Klein
Browse files

[BUGFIX] requestUpdate sensitive to spaces

The TCA property "requestUpdate" is sensitive to spaces, although this
is documented nowhere. Indeed "foo1, foo2" will not work whereas
"foo1,foo2" does. This patch strips spaces from the "requestUpdate"
string before testing it.

Resolves: #49872
Related: #42789
Releases: 6.2, 6.1, 6.0, 4.7, 4.5
Change-Id: I44410007503443843a3ecbff15f4738cd857b73c
Reviewed-on: https://review.typo3.org/22314
Reviewed-by: Markus Klein
Tested-by: Markus Klein
parent b04b92b5
Branches
Tags
No related merge requests found
......@@ -140,7 +140,12 @@ class TreeElement {
}
// Create a JavaScript code line which will ask the user to save/update the form due to changing the element.
// This is used for eg. "type" fields and others configured with "requestUpdate"
if ($GLOBALS['TCA'][$table]['ctrl']['type'] && !strcmp($field, $GLOBALS['TCA'][$table]['ctrl']['type']) || $GLOBALS['TCA'][$table]['ctrl']['requestUpdate'] && GeneralUtility::inList($GLOBALS['TCA'][$table]['ctrl']['requestUpdate'], $field)) {
if (
$GLOBALS['TCA'][$table]['ctrl']['type']
&& !strcmp($field, $GLOBALS['TCA'][$table]['ctrl']['type'])
|| $GLOBALS['TCA'][$table]['ctrl']['requestUpdate']
&& GeneralUtility::inList(str_replace(' ', '', $GLOBALS['TCA'][$table]['ctrl']['requestUpdate']), $field)
) {
if ($GLOBALS['BE_USER']->jsConfirmation(1)) {
$onChange .= 'if (confirm(TBE_EDITOR.labels.onChangeAlert) && ' . 'TBE_EDITOR.checkSubmit(-1)){ TBE_EDITOR.submitForm() };';
} else {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment