I just encounter a problem in the file manager. Uploading images or files that have special chars (&) in their name, breaks the delete functionality of the file manager. Also if the file in question is an image, the Thumb generator also has trouble generating a thumb for the photo.
Update:
Apparently is just the ampersand. I fixed this by changing line 22 in upload-ajax.php:
I'm replacing all the special chars just to be sure.. But from my research only the ampersand gave me problems. If that is the case we can use just a str_replace:
Update:
Apparently is just the ampersand. I fixed this by changing line 22 in upload-ajax.php:
Code:
$name = preg_replace('/[!@#$%^&*() ]/', '_', $_FILES['Filedata']['name']);
I'm replacing all the special chars just to be sure.. But from my research only the ampersand gave me problems. If that is the case we can use just a str_replace:
Code:
str_replace('&','_',$_FILES['Filedata']['name'])