just noticed that with the new drupal_url() using & as argument separator, rss feeds generate bad <link>s, e.g.
<link>http://localhost/drupal/module.php?mod=blog&amp;op=view&amp;id=1...
reason is the "htmlentities($link)" in format_rss_channel() and format_rss_item() which escape &s which are escaped already.
solution is probably to not "htmlentities" links - but i'm not really sure. what do you think?
Comments
Comment #1
(not verified) commentedWould it make sense to urlencode links? Or would that break things further.
Comment #2
(not verified) commentedI think this is fixed. Can someone test it and give some feedback?
Comment #3
(not verified) commented