It looks like the only change needed was in:
wp-content/plugins/download-manager/functions.php
In my file, he changed lines 2986 and 2987 (which is the end of the wpdm_all_packages function) from:
$data = ob_get_contents();
ob_clean();
to:
$data = ob_get_clean();
//ob_clean();
Regards.