Bug #101443 ยป typo3-backend-workspace-pid-fix.patch
backend/Classes/Utility/BackendUtility.php | ||
---|---|---|
public static function getCommonSelectFields($table, $prefix = '', $fields = [])
|
||
{
|
||
$fields[] = $prefix . 'uid';
|
||
$fields[] = $prefix . 'pid';
|
||
if (isset($GLOBALS['TCA'][$table]['ctrl']['label']) && $GLOBALS['TCA'][$table]['ctrl']['label'] != '') {
|
||
$fields[] = $prefix . $GLOBALS['TCA'][$table]['ctrl']['label'];
|
||
}
|