--- a/plugins/SpecialUpdownload.php Sun Jan 27 23:43:24 2008 -0500
+++ b/plugins/SpecialUpdownload.php Mon Jan 28 23:06:38 2008 -0500
@@ -93,7 +93,7 @@
die_friendly('Upload failed', '<p>Enano was unable to determine the format of the uploaded file.</p>');
*/
$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('Upload failed', '<p>The file type ".'.$ext.'" is not allowed.</p>');