Topic: RSS feeds not loading

Man I'm a posting fiend today.. sorry. smile

These were working before the update:

<link rel="alternate" type="application/rss+xml" href="http://www.sadreminders.com/interaction/extern.php?action=new&type=RSS" title="Newest Topics" />
<link rel="alternate" type="application/rss+xml" href="http://www.sadreminders.com/interaction/extern.php?action=active&type=RSS" title="Recently active topics" />
<link rel="alternate" type="application/rss+xml" href="http://www.sadreminders.com/interaction/extern.php?action=active&type=RSS&fid=16" title="Forum announcements" />

the & was converted to & so it would validate properly. Actually I just checked and action=new is working fine.  the other 2 aren't.

They're coming up with a "Live bookmarks failed to load" in Firefox 1.0.

thanks for any help..

Re: RSS feeds not loading

Hmm, that was caused by an error in the file lang/English/common.php in PunBB 1.2, but it has been fixed for a while. Open up that file and make sure line 149 looks like this:

'RSS Desc Active'        =>    'The most recently active topics at',    // board_title will be appended to this string

and not this:

'RSS Desc Active    '        =>    'The most recently active topics at',    // board_title will be appended to this string

There shouldn't be a tab after "Active".

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: RSS feeds not loading

that was the problem. thank you sir!