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
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.