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
Updated by Chris topher over 14 years ago
Hi Stephan,
thanks for your fix!
To get your patch discussed and finally included, send it to the TYPO3-core-list!
Check out:
http://typo3.org/teams/core/core-mailinglist-rules/
Updated by Xavier Perseguers over 14 years ago
Committed to:
- 4-3 (rev. 7197)
- trunk (rev. 7198)