Re-applying the revision with the comment fix (bad merge a couple revs back)
authorDan
Mon, 28 Jan 2008 23:06:38 -0500
changeset 451 2c6ef58e315a
parent 449 b8fd21190ae1 (diff)
parent 450 35f9d6c93eec (current diff)
child 452 b6faa6d6ade2
Re-applying the revision with the comment fix (bad merge a couple revs back)
--- 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>');