
Steven - 2007-05-20 06:52:54
Files with upper case extensions (.JPG) get screened out when using get_ext_based_filelist.
Changed line 699 in my file to
// Modified to ensure lower and upper case extensions pass examination
return( in_array( strtolower($file_ext), $exts, true ) );
strtolower was added.