Changing the order of links in head for RSS autodiscovery
I use views with CCK with views feeds set up for my blog. In addition, I'm using the commentrss module to provide a feed for blog comments. As a result, Drupal produces two application/rss+xml links in my pages' headers.
However, when non-firefox browsers attempt RSS autodiscovery for my blog, the first one they pick up is the commentrss feed as opposed to the more natural choice of the blog posts feed. I'm assuming this is simply because the commentrss feed link is first in the list.
Is there perhaps a weight that can be assigned or some sort of way to be able to change the order by which drupal_add_feed() is called (I'm assuming it is first called in the commentrss module and then in the views module since the feed links are generated in that order), or is there an array I can simply reorder before printing it in my theme?
I could always hack page.tpl.php and just muck around with printing out $head on my own, but is there a better way to do this?
Looking for any suggestions... Thanks!
