Summary:
Module FilePicker 1.0.5 files corrections
Detailed Description:
modules/FilePicker/lib/class.Profile.php
----------
L141 in function is_filename_acceptable : return always false; cause
is_filename_acceptable() not defined in parent Class FilePickerProfile
if (!parent::is_filename_acceptable($filename)) return FALSE;
#---correction (comment the line)
//if (!parent::is_filename_acceptable($filename)) return FALSE;
----------
L 145 $filename wrong syntaxe in function is_filename_acceptable
$ext = strtolower(substr(strrchr($file_name, '.'), 1));
#---correction
$ext = strtolower(substr(strrchr($filename, '.'), 1));