In der recent_body.tpl die entsprechenden Einträge löschen ....

Markus
Code: Alles auswählen
// #### html output ####
echo "<tr><td class=\"$row_class\" align=\"center\" valign=\"middle\"><img src=\"$phpbb_root_path$folder_image\" alt=\"$folder_alt\" /></td>";
echo "<td class=\"$row_class\"><a href=\"$phpbb_root_path$forum_url\" class=\"genmed\">$forum_name</a></td>";
echo "<td class=\"$row_class\"><span class=\"topictitle\">$newest_img $topic_type<a href=\"$phpbb_root_path$topic_url\" class=\"topictitle\">$topic_title</a></span>
<font size=\"-6\">$goto_page<br /> $l_started $first_time $l_by $first_author</font></td>";
echo "<td class=\"$row_class\" align=\"right\"><span class=\"postdetails\">$replies $lang[Replies] <br />$views $lang[Views]</span> </td>";
echo "<td class=\"$row_class\" align=\"right\" valign=\"middle\" nowrap=\"nowrap\"><span class=\"gensmall\"> $last_url $last_time <br />$last_author</span> </td></tr>";
// #### html output ####
jaymuc hat geschrieben:Ich habe eben versucht das Mod einzubinden und habe genau das gleiche Problem. recent3 phpBB2.0.8aBerserker hat geschrieben:Ich hab mal ne Frage!
Ich benutze die Recent3 Version und bekomme nur den Page Header Angezeigt!
Woran kann denn das liegen?
Code: Alles auswählen
// ############ Edit below ############
$length = '25'; // length of topic title
$limit = '5'; // how many topics?
$special_forums = '0'; // 0 = no; 1 = yes
$forums = '14,15'; // ID of forums; separate them with a comma
// ############ Edit above ############
////ÄNDERUNG BEGIN ##################
$sql = "SELECT post_id FROM " . POSTS_TABLE . " ORDER BY post_id DESC limit 1000 ";
////ÄNDERUNG ENDE##################
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain matched posts list', '', __LINE__, __FILE__, $sql);
}
$recent_ids = array();
while( $row = $db->sql_fetchrow($result) )
{
$recent_ids[] = $row['post_id'];
}
$db->sql_freeresult($result);
Code: Alles auswählen
<a href=\"$phpbb_root .....
Code: Alles auswählen
<a target="_blank" href=\"$phpbb_root .....