and similary inside admin/index.php
change line 524 form
PHP Code:
$ftype = strtolower(end(explode('.', $file)));
to
PHP Code:
$file_exp = explode('.', $file);
$file_ext = end($file_exp);
$ftype = strtolower($file_ext);
@Dev
0) change this in CVS
1) move this to bugs forum.