Originally Posted by The Equivocate
The problem lies in dl_functions.php:
Code:
// --------------------------------------------------------------------
// Prepare for renaming
// --------------------------------------------------------------------
function file_prep($text) {
$patterns = array("~","`","!","@","#","$","%","^","&","*","(",")","{","}","|","\\",":",";","\"","'","<",",",">","?","/");
return str_replace($patterns, "", $text);
Should be changed to:
Code:
// --------------------------------------------------------------------
// Prepare for renaming
// --------------------------------------------------------------------
function prep_file($text) {
$patterns = array("~","`","!","@","#","$","%","^","&","*","(",")","{","}","|","\\",":",";","\"","'","<",",",">","?","/");
return str_replace($patterns, "", $text);
|