Bug #19935 » 10298.diff
typo3/sysext/beuser/mod/index.php (working copy) | ||
---|---|---|
* @return string the HTML anchor
|
||
*/
|
||
function linkUser($str,$rec) {
|
||
return '<a href="'.htmlspecialchars($this->MCONF['_']).'&be_user_uid='.$rec['uid'].'">'.$str.'</a>';
|
||
return '<a href="'.htmlspecialchars($this->MCONF['_']).'&be_user_uid='.$rec['uid'].'">' . htmlspecialchars($str) . '</a>';
|
||
}
|
||