Bug #16833 ยป 0004742.patch
typo3/sysext/beuser/mod/index.php (Arbeitskopie) | ||
---|---|---|
$outTable = '<table border="0" cellpadding="1" cellspacing="1"><tr class="bgColor5"><td>'.t3lib_iconWorks::getIconImage('be_users',$tempBE_USER->user,$GLOBALS['BACK_PATH'],'class="absmiddle" title="'.$tempBE_USER->user['uid'].'"').$tempBE_USER->user['username'].'</td>';
|
||
$outTable.= '<td>'.$tempBE_USER->user['realName'].($tempBE_USER->user['email'] ? ', <a href="mailto:'.$tempBE_USER->user['email'].'">'.$tempBE_USER->user['email'].'</a>' : '').'</td>';
|
||
$outTable.= '<td>'.$this->elementLinks('be_users',$tempBE_USER->user).'</td></tr></table>';
|
||
$outTable.= '<strong><a href="'.htmlspecialchars($MCONF['_']).'">< Back to overview</a></strong><br />';
|
||
$outTable.= '<strong><a href="'.htmlspecialchars($this->MCONF['_']).'">< Back to overview</a></strong><br />';
|
||
$outTable.= '<br /><table border="0" cellpadding="2" cellspacing="1">'.implode('',$lines).'</table>';
|
||
$content.= $this->doc->section('User info',$outTable,0,1);
|
||
... | ... | |
* @return [type] ...
|
||
*/
|
||
function linkUser($str,$rec) {
|
||
return '<a href="'.htmlspecialchars($MCONF['_']).'&be_user_uid='.$rec['uid'].'">'.$str.'</a>';
|
||
return '<a href="'.htmlspecialchars($this->MCONF['_']).'&be_user_uid='.$rec['uid'].'">'.$str.'</a>';
|
||
}
|
||
/**
|