upload_unmunge_filename
- Versions
- 4.6 – 5
upload_unmunge_filename($filename)
Undo the effect of upload_munge_filename().
Code
modules/upload.module, line 572
<?php
function upload_unmunge_filename($filename) {
return str_replace('_.', '.', $filename);
}
?>Login or register to post comments 