I have admin plugins throwing out new "headers already sent errors" with upgrade from WPMU 2.6.5 to WPMU2.7
Today's workaround was to avoid wp_redirect(from pluggable.php line 856) in a plugin generating an admin page all together:
Example revised plugin code:
// wp_redirect($location);
echo "<meta http-equiv='refresh' content='0;url=$location' />";
http://trac.wordpress.org/ticket/2860
http://wordpress.org/support/topic/179091?replies=1
Any other plugin users/authors notice an increase in "Headers already sent" errors (post WPMU 2.7) when a plugin admin page saves and refreshes?