Bug #22634
closedValue of "Show extensions without basic security review" is reset after updating TYPO3
0%
Description
The checkbox "Show extensions without basic security review" is unchecked after updating TYPO3 although it was checked before.
As a consequence, when I check for extension updates, TYPO3 doesn't list me the extensions to update. But there are updates, I've looked that up myself. The local extension list is up to date.
There was no problem on T3 4.2.10 and 4.3.2. I have updated to 4.3.3 at last.
How can I solve the problem?
(issue imported from #M14366)
Updated by Phlegx Systems over 14 years ago
I have checked the box "Show extensions without basic security review" and now all run without problems, but why the configuration changes (checkbox: from checked to unchecked) if I upgrade to a higher Typo3 Version?
Updated by Chris topher over 14 years ago
typo3/mod/tools/em/class.em_index.php, alterSettings()
displays the checkbox (in checked or unchecked state).
There t3lib_BEfunc::getFuncCheck is called and the current value (checked or unchecked) is set as $currentValue = $this->MOD_SETTINGS['display_unchecked'].
The function then returns
<input type="checkbox". (...) .($currentValue?' checked="checked"':'') ... />
Seems like the value from MOD_SETTINGS is not always recognized correctly.
Updated by Steffen Gebert over 14 years ago
Did you reset your user settings? The value whether only reviewed extensions should be shown, is stored in there.
Updated by Chris topher over 14 years ago
I don't think that storing this info there is logical. I think this is a system setting, which should be stored once per system and not once per user.
Or we should at least add a hint to the text in the EM, that this setting is changed when resetting the user(!) settings.
Updated by Chris topher over 14 years ago
Will be solved by #22649 which removes this option.