diff -r dc6026376919 -r 5bd429428101 plugins/SpecialUpdownload.php --- a/plugins/SpecialUpdownload.php Wed Jan 23 12:48:22 2008 -0500 +++ b/plugins/SpecialUpdownload.php Thu Jan 24 22:06:09 2008 -0500 @@ -70,7 +70,7 @@ } $types = fetch_allowed_extensions(); - $ext = substr($file['name'], strrpos($file['name'], '.')+1, strlen($file['name'])); + $ext = strtolower(substr($file['name'], strrpos($file['name'], '.')+1, strlen($file['name']))); if ( !isset($types[$ext]) || ( isset($types[$ext]) && !$types[$ext] ) ) { die_friendly($lang->get('upload_err_title'), '

' . $lang->get('upload_err_banned_ext', array('ext' => htmlspecialchars($ext))) . '

');