I'm trying to get my RSS up and I think I found a bug in the HTMLStripper in rss.cfc

Apparently, I have chr(8211) (which is supposed to be a dash) and chr(8217) (which is supposed to be a single quote or apostrophe) in my news items. When exporting to RSS, these wouldn't get changed to their correct characters.

I added the following to rss.cfc, round about line 200:

modsummary = ReplaceNoCase(modsummary, chr(8217), "'", "ALL"); //smart apostrophe
modsummary = ReplaceNoCase(modsummary, chr(8211), "-", "ALL"); //emdash


I see a little above, there's an entry for &##8217; and is marked smart apostrophe, but that doesn't get replaced out.



---
You are currently subscribed to farcry-dev as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to