Project

General

Profile

Actions

Bug #22254

closed

missing <tr> in "Admin Tools -> User Admin"

Added by Stephan Kellermayr about 14 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2010-03-08
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:

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

index.php.0013775.diff (857 Bytes) index.php.0013775.diff Administrator Admin, 2010-03-09 11:36
Actions

Also available in: Atom PDF