Das wäre dann diese:
<?php
# Copyright by: Manuel Staechele
# Support: www.ilch.de
defined ('main') or die ( 'no direct access' );
# check ob ein fehler aufgetreten ist.
check_forum_failure2($forum_failure);
$title = $allgAr['title'].' :: Forum2 :: '.aktForumCats($aktForumRow['kat'],'title').' :: '.$aktForumRow['name'];
$hmenu = $extented_forum_menu.'<a class="smalfont" href="index.php?forum2">Forum2</a><b> » </b>'.aktForumCats($aktForumRow['kat']).'<b> » </b>'.$aktForumRow['name'].$extented_forum_menu_sufix;
$design = new design ( $title , $hmenu, 1);
$design->header();
$limit = $allgAr['Ftanz']; // Limit
$page = ( $menu->getA(3) == 'p' ? $menu->getE(3) : 1 );
$MPL = db_make_sites ($page , "WHERE fid = '$fid'" , $limit , '?forum2-showtopics2-'.$fid , 'topics' );
$anfang = ($page - 1) * $limit;
$tpl = new tpl ( 'forum2/showtopic2' );
if ( $forum_rights['start'] == TRUE ) {
$tpl->set('NEWTOPIC', '<b>[ <a href="index.php?forum2-newtopic2-'.$fid.'">'.$lang['newtopic'].'</a> ]</b>' );
} else {
$tpl->set('NEWTOPIC','');
}
$tpl->set('MPL', $MPL);
$tpl->set_out('FID', $fid, 0);
$q = "SELECT a.id, a.name, a.rep, a.erst, a.hit, a.art, a.stat, b.time, b.erst as last, b.id as pid
FROM prefix_topics2 a
LEFT JOIN prefix_posts2 b ON a.last_post_id = b.id
WHERE a.fid = {$fid}
ORDER BY a.art DESC, b.time DESC
LIMIT ".$anfang.",".$limit;
$erg = db_query($q);
if ( db_num_rows($erg) > 0 ) {
while($row = db_fetch_assoc($erg) ) {
if ($row['stat'] == 0) {
$row['ORD'] = 'cord';
} else {
#$row['ORD'] = get_ordner($row['time']);
$row['ORD'] = forum_get_ordner2($row['time'],$row['id'],$fid);
}
$row['date'] = date('d.m.y - H:i',$row['time']);
$row['page'] = ceil ( ($row['rep']+1) / $allgAr['Fpanz'] );
$row['VORT'] = ( $row['art'] == 1 ? 'Fest: ' : '' );
$tpl->set_ar_out($row,1);
} } else {
echo '<tr><td colspan="6" class="Cnorm"><b>keine Einträge vorhanden</b></td></tr>';
}
$tpl->out(2);
if ( $forum_rights['mods'] == TRUE ) {
$tpl->set('id', $fid);
$tpl->out(3);
}
$design->footer();
?>
»Willst du den Charakter eines Menschen erkennen, so gib ihm Macht!«
(Abraham Lincoln)