Hier kann eine Notiz zum Merk-Eintrag hinzugefügt werden (optional)
Geschlossen |
<div class="forum ui-corner-all Cmite" style="padding: 5px; background-color: #1d1d1d;">
<?php # Copyright by Manuel Staechele # Support www.ilch.de defined ('main') or die ( 'no direct access' ); // IlchBB Forum 3.1 :: Loader :: Start require_once ('include/contents/ilchbb_forum/ilchbb_loader.php'); $ilchBB = new ilchBB(); // IlchBB Forum 3.1 :: Loader :: Ende $query = "SELECT a.id, a.name, a.rep,b.name as top, b.id as fid, c.erst as last, c.erstid, c.id as pid, c.time, d.name as kat FROM prefix_topics a LEFT JOIN prefix_forums b ON b.id = a.fid LEFT JOIN prefix_posts c ON c.id = a.last_post_id LEFT JOIN prefix_forumcats d ON d.id = b.cid AND b.id = a.fid LEFT JOIN prefix_groupusers vg ON vg.uid = ".$_SESSION['authid']." AND vg.gid = b.view LEFT JOIN prefix_groupusers rg ON rg.uid = ".$_SESSION['authid']." AND rg.gid = b.reply LEFT JOIN prefix_groupusers sg ON sg.uid = ".$_SESSION['authid']." AND sg.gid = b.start WHERE ((".$_SESSION['authright']." <= b.view AND b.view < 1) OR (".$_SESSION['authright']." <= b.reply AND b.reply < 1) OR (".$_SESSION['authright']." <= b.start AND b.start < 1) OR vg.fid IS NOT NULL OR rg.fid IS NOT NULL OR sg.fid IS NOT NULL OR -9 >= ".$_SESSION['authright'].") ORDER BY c.time DESC LIMIT 0,5"; echo '<link rel="stylesheet" type="text/css" href="include/extras/lastforum/lastforum.css">'; echo '<div>'; $resultID = db_query($query); while ($row = db_fetch_assoc($resultID)) { $row['date'] = date('d.m.y - H:i',$row['time']); $row['page'] = ceil ( ($row['rep']+1) / $allgAr['Fpanz'] ); $ord = $ilchBB->checkNewTopics($row['fid'], $row['id']); if ($ord === TRUE) { $row['ORD'] = 'nord'; } else { $row['ORD'] = 'ord'; } $bild = '<img src="include/extras/lastforum/'.$row["ORD"].'.png" border="0" height="14" width="14" alt="Bild" />'; echo '<div class="topic_eintrag"><a href="?forum-showposts-'.$row['id'].'-p'.$row['page'].'#'.$row['pid'].'" title="'.$row['date'].' von '.$row['last'].'">'.$bild.'<span>'.((strlen($row['name'])<18) ? $row['name'] : substr($row['name'],0,25).'...').'</span></a></div>'; } echo '</div>'; ?>
\include\includes\ilchbb_forum\css\ilchbb_forum.standard.css
\include\includes\ilchbb_forum\css\ilchbb_forum.standard.css
Geschlossen | ||
Zurück zu Module und Modifikationen |