Here's the fix. Line 63 of admin/doedit_multi_rss.php has this:

if (!$feed_body) $feed_body = 10;

That needs to be:

if (!$feed_body && $feed_body != '0') $feed_body = 10;