Undoes the effect of file_munge_filename().
$filename: String with the filename to be unmunged.
An unmunged filename string.
function file_unmunge_filename($filename) { return str_replace('_.', '.', $filename); }