ich möchte in meinem Forum auch RSS-Feeds für Foren mit Registrierung anbieten.
Was muss ich im folgenden Code ändern?
Danke für eure Hilfe!
Code: Alles auswählen
<?php
* rdf.php
* -------------------
// ....... Ausschnitt aus der rdf.php ...............
// SQL statement to fetch active topics of public forums
$sql = "SELECT t.topic_id, t.topic_title, p.post_id, p.post_time, pt.post_text, pt.bbcode_uid, f.forum_name
FROM " . TOPICS_TABLE . " AS t, " . POSTS_TABLE . " AS p, " . POSTS_TEXT_TABLE . " AS pt, " . FORUMS_TABLE . " AS f
WHERE
f.forum_id = t.forum_id
AND f.auth_view = " . AUTH_ALL . "
AND p.topic_id = t.topic_id
AND p.post_id = $sql_post_id_field
AND pt.post_id = p.post_id
$sql_where
ORDER BY $sql_orderby LIMIT $count";
$topics_query = $db->sql_query($sql);
.....
.....