Getting Jerome's Keywords plugin to work with edgeio

edgeio uses the RSS/Atom/RSS2 feed of your weblog to search for new listings, but since it currently just takes one and not necessarily the Atom feed your new items might not be recognized by the edgeio parser. The solution to this is actually quite simple:


Search for following line around line 637 (in the keywords_appendTags function):


if ( (!$doing_rss) || ($feed != 'atom') )

and replace it with


if ( (!$doing_rss) )

Now every feeditem should have the tags appeneded to it and edgeio should finally be able to use them :)