Extra space that matters - could already be fixed, but I didn't see it in the forum

edited November 2011 in Bug Reports
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

  • edited 9:34AM
    Thanks for the report. That fix has been pushed to the repo.
Sign In or Register to comment.