I am having a problem with this hack. Currently the feed I am trying to use includes an ampersand.
I input:
http://www.example.com/rssfeed.cfm?m=10&s=255
However the hack converts this to:
http://www.example.com/rssfeed.cfm?m=10&s=255
Obviously (for anyone who knows about query strings), this does not work. The hack is encoding the ampersand, and that doesn't fly. While ampersands should be encoded when displayed in a browser (for W3C standards) they should not be encoded when accesed (browsers unencode the & and turn it into a plain & when viewed).
I would appreciate any help in fixing this hack to not encode ampersands. I'm considering making a mod_rewrite rule for this as a work around, but I would prefer to make this work.
Thanks!