I added the following code to fdfeedburner.php to get ir work for feeds for authors (blog.com/author/name/feed)
Look for:
// Redirect comment feed
if ($feed == 'comments-rss2' || is_single() || $withcomments) {
if ($comment_url != null) {
header("Location: ".$comment_url);
die;
}
And add after:
}
// Redirect author feed
if ($feed == 'author-rss2' || is_single() || $withcomments) {
if ($comment_url != null) {
header("Location: ".$comment_url);
die;
}
It works for me: Feedburner is still there and I have individual feeds for authors.