Extra space that matters - could already be fixed, but I didn't see it in the forum
Form_builder.php -- line 1161
is
$this->form_attrs['enctype'] = ' multipart/form-data';
but needs to be
$this->form_attrs['enctype'] = 'multipart/form-data';
Note the space before multipart. Some browsers (Chrome) don't care. Some do (Firefox, Explorer)
Cheers -
Comments