If the text processed for the <source> tag contains &, it is not getting properly converted to &, and it therefore fails validation. The solution I found was to add a check_plain() to views_rss_core_preprocess_item_source(), per the attached patch.
A similar patch is needed in the D7 version.
| Comment | File | Size | Author |
|---|---|---|---|
| views_rss_core_source.patch | 584 bytes | gribnif |
Comments
Comment #1
keva commentedthanks - this did the trick!
Comment #3
maciej.zgadzaj commentedCommitted and pushed to 6.x-2.x.
Also, this is not needed for 7.x branch, as there all elements are passed through
format_xml_elements(), where this is done automatically.