16
ok to have the file extension automatically changed to lowercase..
open class/uploader.php
find around line 181
$ext = substr( $this->mediaName, $ext + 1 );
change to
$ext = strtolower(substr( $this->mediaName, $ext + 1 ));
there's also a typo in uploader.php too i think
line 170
$this->mediaError = !empty($_FILES[$media_name]['error'][$index]) ? $_FILES[$media_name]['errir'][$index] : 0;
there's an error in the 2nd error.
should be
$this->mediaError = !empty($_FILES[$media_name]['error'][$index]) ? $_FILES[$media_name]['error'][$index] : 0;
maybe dev could confirm this tho??