[TYPO3-core] RFC: #11896: User Setup miss save of be_users fields and miss handling of default value

Georg Ringer news at ringerge.org
Wed Sep 9 14:09:38 CEST 2009


Hi,

+1 on reading but can you switch
$value = $config['table'] == 'be_users' ? 
$GLOBALS['BE_USER']->user[$fieldName] : $GLOBALS['BE_USER']->uc[$fieldName];

to

$value = ($config['table'] == 'be_users') ? 
$GLOBALS['BE_USER']->user[$fieldName] : $GLOBALS['BE_USER']->uc[$fieldName];

to improve readability?

georg


More information about the TYPO3-team-core mailing list