Thank you Denre,
Your input just might have us on the right track.
This is all we can find on forum.php that refers to RSS and relates to ascending or descending.
I apologize for not being good with this php stuff, still trying to learn it and am afraid to make a mess of things.
Any thought as to what will happen if we change the highlighted desc below to asc?
function getRssForum ($forum_uri)
{
global $gConf;
$this->_rssPrepareConf ();
$f = $this->fdb->getForumByUri (filter_to_db($forum_uri));
$forum_id = $f['forum_id'];
if (!$f) exit;
$a = $this->fdb->getTopics ($forum_id, 0);
reset ($a);
$items = '';
$lastBuildDate = '';
while ( list (,$r) = each ($a) ) {
$lp = $this->fdb->getTopicPost($r['topic_id'], 'last');
$td = $this->fdb->getTopicDesc ($r['topic_id']);
$td = orca_mb_substr($td, 0, $gConf['topics_desc_len']);
if (orca_mb_len($td) == $gConf['topics_desc_len'])
$td .= '...';
if (!$lastBuildDate)
$lastBuildDate = $lp['when'];
$items .= $this->_rssItem ($r['topic_title'], sprintf($gConf['rewrite']['topic'], $r['topic_uri']), $td, $lp['when']);
}
return $this->_rssFeed ($f['forum_title'], sprintf($gConf['rewrite']['forum'], $f['forum_uri'], 0), $f['forum_title'], $lastBuildDate, $items);
}