1 The Atom feed fails validation at http://feedvalidator.org/ because the `<category>` tags are syntactically incorrect ([spec](http://www.atomenabled.org/developers/syndication/atom-format-spec.php#element.category)). With this patch it validates.
3 Index: templates/atomitem.tmpl
4 ===================================================================
5 --- templates/atomitem.tmpl (revision 2640)
6 +++ templates/atomitem.tmpl (working copy)
8 <link href="<TMPL_VAR PERMALINK>"/>
9 <TMPL_IF NAME="CATEGORIES">
10 <TMPL_LOOP NAME="CATEGORIES">
11 - <category><TMPL_VAR CATEGORY></category>
12 + <category term="<TMPL_VAR CATEGORY>" />
15 <updated><TMPL_VAR DATE_3339></updated>