index.php suche nach
Code: Alles auswählen
$last_post .= '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>';
und füge danach ein
Code: Alles auswählen
$last_post_link = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'];
suche nach
und füge danach ein
index_body.tpl suche nach
Code: Alles auswählen
nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
und füge DAVOR ein
Code: Alles auswählen
onMouseOver="this.style.cursor='hand'" onclick="window.location.href='{catrow.forumrow.LAST_POST_LINK}'"
viewforum.php suche nach
Code: Alles auswählen
$last_post_url = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $topic_rowset[$i]['topic_last_post_id']) . '#' . $topic_rowset[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" border="0" /></a>';
und füge danach ein
Code: Alles auswählen
$last_post_link = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $topic_rowset[$i]['topic_last_post_id']) . '#' . $topic_rowset[$i]['topic_last_post_id'];
suche nach
und füge danach ein
viewforum_body.tpl suche nach
Code: Alles auswählen
nowrap="nowrap"><span class="postdetails">{topicrow.LAST_POST_TIME}<br />{topicrow.LAST_POST_AUTHOR} {topicrow.LAST_POST_IMG}</span></td>
und füge DAVOR ein
Code: Alles auswählen
onMouseOver="this.style.cursor='hand'" onclick="window.location.href='{topicrow.LAST_POST_LINK}'"