Verfasst: 12.12.2007 19:20
Dummer Denkfehler...
Das Problem von thomas.d, -Tanja- und Skippy07 dürfte damit wohl behoben werden.
Zum testen:
includes/functions_wwh.php
finde:
ersetze mit:
@x16: ich guck mal, ob ich das noch anders hinbekomme.
Das Problem von thomas.d, -Tanja- und Skippy07 dürfte damit wohl behoben werden.
Zum testen:
includes/functions_wwh.php
finde:
Code: Alles auswählen
$hover_time = (($wwh_disp_time == '2') ? ' title="' . $user->lang['WHO_WAS_HERE_LATEST1'] . ' ' . $user->format_date($row['last_page'],'H:i') . $user->lang['WHO_WAS_HERE_LATEST2'] . '" ' : '' );
$disp_time = (($wwh_disp_time == '1') ? ' (' . $user->lang['WHO_WAS_HERE_LATEST1'] . ' ' . $user->format_date($row['user_lastvisit'],'H:i') . $user->lang['WHO_WAS_HERE_LATEST2'] . ')' : '' );
Code: Alles auswählen
$hover_time = (($wwh_disp_time == '2') ? ' title="' . $user->lang['WHO_WAS_HERE_LATEST1'] . ' ' . $user->format_date((($row['user_type'] == USER_IGNORE) ? $row['user_lastvisit'] : $row['last_page']),'H:i') . $user->lang['WHO_WAS_HERE_LATEST2'] . '" ' : '' );
$disp_time = (($wwh_disp_time == '1') ? ' (' . $user->lang['WHO_WAS_HERE_LATEST1'] . ' ' . $user->format_date((($row['user_type'] == USER_IGNORE) ? $row['user_lastvisit'] : $row['last_page']),'H:i') . $user->lang['WHO_WAS_HERE_LATEST2'] . ')' : '' );