<?php
# Copyright by: Manuel Staechele
# Support: www.ilch.de
defined (
'main'
)
or
die
(
'no direct access'
);
# check ob ein fehler aufgetreten ist.
check_forum_failure(
$forum_failure
);
$title
=
$allgAr
[
'title'
].
' :: Forum :: '
.aktForumCats(
$aktForumRow
[
'kat'
],
'title'
).
' :: '
.
$aktForumRow
[
'name'
];
$hmenu
=
$extented_forum_menu
.
'<a class="smalfont" href="index.php?forum" style="color:#000000">Forum</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'
];
$page
= (
$menu
->getA(3) ==
'p'
?
$menu
->getE(3) : 1 );
$MPL
= db_make_sites (
$page
,
"WHERE fid = '$fid'"
,
$limit
,
'?forum-showtopics-'
.
$fid
,
'topics'
);
$anfang
= (
$page
- 1) *
$limit
;
$tpl
=
new
tpl (
'forum/showtopic'
);
$tpl
->set(
'CATNAME'
,
$aktForumRow
[
'name'
]);
$tpl
->set(
'HMENU'
,
$hmenu
);
if
(
$forum_rights
[
'start'
] == TRUE ) {
$tpl
->set(
'NEWTOPIC'
,
'<a href="index.php?forum-newtopic-'
.
$fid
.
'"><img src="include/images/forum/newth.png" border="0"></a>'
);
}
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_topics a
LEFT JOIN prefix_posts 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
[
'TOP'
] =
'cord'
;
}
elseif
(
$row
[
'rep'
] >= 20) {
$row
[
'TOP'
] =
'hord'
; }
else
{
#
$row
[
'ORD'
] = get_ordner(
$row
[
'time'
]);
$row
[
'TOP'
] = forum_get_ordner(
$row
[
'time'
],
$row
[
'id'
],
$fid
);
}
$row
[
'date'
] =
date
(
'd.m.y - H:i'
,
$row
[
'time'
]);
$row
[
'page'
] =
ceil
( (
$row
[
'rep'
]+1) /
$allgAr
[
'Fpanz'
] );
$tpl
->set_ar_out(
$row
,1);
} }
else
{
echo
'<tr><td colspan="6" class="Cnorm"><b>keine Einträe vorhanden</b></td></tr>'
;
}
$tpl
->out(2);
if
(
$forum_rights
[
'mods'
] == TRUE ) {
$tpl
->set(
'id'
,
$fid
);
$tpl
->out(3);
}
$design
->footer();
?>