Hi,

I tried to use the module with Webform 4.0 and ran into an issue - the uploaded images will not save.
I see the uploaded images in the
sites\default\files\webform\3\select_images folder, but the value part of the
fields is missing http://screencast.com/t/yyGC6oEAz2
Tested with 3.19 - everything works perfectly well.

Could you please check it?
Thank you!

Comments

danieltome’s picture

This was happening for me with webform 3.20

The triggering ID of the submit button is no longer edit-submit.
So change the value to: edit-actions-submit

from:

if ($form_state['triggering_element']['#id'] == 'edit-submit') {

to this:

if ($form_state['triggering_element']['#id'] == 'edit-actions-submit') {

The values are now saving.

cheers,
Dan

rajeevgole’s picture

I was also facing the same issue with webform version 7.x-3.20 . Dan's solution works for me.

raphael apard’s picture

Status: Active » Closed (fixed)

  • 5aac621 committed on 7.x-1.x
    Issue #2183567 by wdki: Fixes missing image on save
    
raphael apard’s picture

Version: » 7.x-1.0
Status: Active » Fixed
raphael apard’s picture

Status: Fixed » Closed (fixed)