upload_unmunge_filename

Definition

upload_unmunge_filename($filename)
modules/upload/upload.module, line 675

Description

Undo the effect of upload_munge_filename().

Code

<?php
function upload_unmunge_filename($filename) {
  return str_replace('_.', '.', $filename);
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.