ecosmox36
Results
1
comments of
ecosmox36
Confirm this bug, this is a php 8.0/8,1 behaviour: `if (0 < $GLOBALS['TSFE']->recordRegister['tt_content:' . $row['uid']]) {` should be `if (0 < isset($GLOBALS['TSFE']->recordRegister['tt_content:' . $row['uid']]) ? $GLOBALS['TSFE']->recordRegister['tt_content:' . $row['uid']] : 0)...