Index: html/sites/all/modules/contrib/simplefeed/simplefeed.module =================================================================== --- html/sites/all/modules/contrib/simplefeed/simplefeed.module (revision 5455) +++ html/sites/all/modules/contrib/simplefeed/simplefeed.module (working copy) @@ -500,6 +500,14 @@ // prevent SimplePie from using all of it's data santization since we use Drupal's input formats to handle this $feed->set_stupidly_fast(TRUE); $feed->set_feed_url($process_feed->url); + /* + * http://pastie.org/267282 + * http://groups.google.com/group/feedburner-for-developers/browse_thread/thread/aa193c2e1ed07f51/285c2e95e09539f0 + * http://tech.groups.yahoo.com/group/simplepie-support/message/2252 + * Currently FeedBurner is giving SimplePie troubles + * This fixes it for now + */ + $feed->set_useragent('Mozilla/5.0'); $success = $feed->init(); if ($success && $feed->data) { @@ -578,4 +586,4 @@ function htmlspecialchars_decode($string, $quote_style = ENT_COMPAT) { return strtr($string, array_flip(get_html_translation_table(HTML_SPECIALCHARS, $quote_style))); } -} \ No newline at end of file +}