Good morning,
In
code.google.com/p/flexicontent/
... 668&r=1668
line : 141, extensions are hardcoded :
$imageexts = array('jpg','gif','png','bmp');
and used later, line:149
by
if ( !in_array($row->ext, $imageexts)) continue; // verify image is in allowed extensions
Partially fixed by using the following code ( Will use the flexicontent configuration option>Legal Image Extensions (File Types) :bmp,gif,jpg,png,jpeg ):
if ( !in_array(strtolower($ext), explode(',',$this->params->get('image_extensions'))))
{
Bug found when trying to upload a *.jpeg.
Adding strtolower() will also fix later bugs given that the extension list in the configuration should be in lowercase.
Full fix of this bug will involve to get the extension directly from the considered image field.
Regards