Code: Select all
$topics_only = (isset($HTTP_GET_VARS['t'])) ? intval($HTTP_GET_VARS['t']) : 1;
$sql_topics_only_where = '';
if ($topics_only == 1) {
$sql_topics_only_where = 'AND p.post_id = t.topic_first_post_id';
}
Code: Select all
$post_text = str_replace("\n", '<br />', $post_text);
Code: Select all
<link rel="alternate" type="application/rss+xml" title="{SITENAME}" href="syndication.php?type=rss" />
<link rel="alternate" type="application/atom+xml" title="{SITENAME}" href="syndication.php?type=atom" />
That's right, I'm using Firefox 2.0.0.4, too.Jhong wrote:...
Right. RSSOwl marks all items as unread after each reload since the posts have different URLs each time. The SIDs should be removed.ascensions wrote:I do however notice it's appending sids to the url when ran from third party software. This could be problematic as it's creating alot of alternate urls. Can this SIDs be shut off?