Bug #21348
closedEXT:setup CSH mode setting gets lost
0%
Description
Go to "user settings" and set "?Context Sensitive Help mode" to "Display help icon only". Save the configuration.
After that, CSH icons are shown, but the value for CSH mode is again "Display no help information". As soon as you safe the form, the information of the changed setting is lost.
It always falls back to "no help information".
I assume this is a problem caused by the setup rewrite.
Please target this to 4.3.0
(issue imported from #M12326)
Files
Updated by Oliver Hader about 15 years ago
Can you please check when (at which TYPO3 version) this behaviour was introduced? Thanks!
Updated by Steffen Gebert about 15 years ago
Introduced by rev 5991, fix for #21010: User Setup miss save of be_users fields and miss handling of default value
Updated by Steffen Gebert about 15 years ago
Bug is caused by a variable clash
foreach ($config['items'] as $key => $value) {
$html .= '<option value="' . $key . '"' .
($value == $key ? ' selected="selected"' : '') .
'>' . $this->getLabel($value,'',false) . '</option>' . chr(10);
}
$value already holds the saved value of the field, so we mustn't reassign the LL value to it.