Quote:
Originally Posted by rjordan
Since updating to 2.0c, I can no longer upload or link files either. I am still looking into it, but thought I would mention it.
|
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);