Bug #22254
closedmissing <tr> in "Admin Tools -> User Admin"
0%
Description
the HTML-output in module "User Admin" is corrupt, because of a missing <tr>.
simple replace line 1382 in 'typo3/sysext/beuser/mod/index.php':
$allCells['USERS'] = '<table border="0" cellspacing="0" cellpadding="0" width="100%"><td><b>' . $GLOBALS['LANG']->getLL('usernames', true) . '</b></td><td width="12">' . $link_createNewUser . '</td></tr></table>';
with this:
$allCells['USERS'] = '<table border="0" cellspacing="0" cellpadding="0" width="100%"><tr><td><b>' . $GLOBALS['LANG']->getLL('usernames', true) . '</b></td><td width="12">' . $link_createNewUser . '</td></tr></table>';
...another solution would be to revise the nested tables in this part, because it makes no sense to put the header AND the userslist in its own table.
(issue imported from #M13775)
Files