Bug #18895 » 8588.diff
typo3/sysext/beuser/mod/index.php (working copy) | ||
---|---|---|
// Process and visualized each active session as a table row:
|
||
if (is_array($sessions)) {
|
||
foreach ($sessions as $session) {
|
||
$hostName = ($session['ses_iplock'] != '[DISABLED]' ? gethostbyaddr($session['ses_iplock']) : '[DISABLED]');
|
||
$hostByAddr = @gethostbyaddr($session['ses_iplock']) ? gethostbyaddr($session['ses_iplock']) : '';
|
||
$hostName = ($session['ses_iplock'] != '[DISABLED]' ? $hostByAddr : '[DISABLED]');
|
||
$outTable .= '
|
||
<tr class="bgColor4" height="17" valign="top">' .
|
||
'<td nowrap="nowrap">' .
|