Closed (fixed)
Project:
Drag'n'Drop Uploads
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
4 Sep 2010 at 18:21 UTC
Updated:
10 Feb 2012 at 21:50 UTC
Jump to comment: Most recent file
Comments
Comment #1
tsi commentedConfirm this is still an issue with beta1, the line is 1303 though.
Comment #2
tsi commentedmarked #904252: Another "Call to undefined function dragndrop_uploads_node_type_form_submit()" as duplicate
Comment #3
jelle_sbug still exists in latest dev version. Looking at the code, the function just isn't there, and since I don't know what it's supposed to do I couldn't really write a patch. But when I comment out line 75 of dragndrop_uploads.module ($form['#submit'][] = 'dragndrop_uploads_node_type_form_submit';) everything still seems to work...
Comment #4
jelle_sComment #5
kking commentedI've also ran into this issue on a fresh install of D7. I commented the function out just like #4 did.
Comment #6
jeffschulerI got this error in D7 too.
There's the same submit handler with no function of that name in the stable D6 version, too. Doesn't this cause an issue there...?
Comment #7
petsagouris commentedThere is no hook named like that. #4 has is right. I wonder what the intended use for this was. (Or even, was this put here by mistake?)
Comment #8
johnvThe line $form['#submit'][] = 'dragndrop_uploads_node_type_form_submit'; does look like a hook, but is a call-back.
I'd use an underscore, to indicate the 'private' nature.
You can use it as an extra hook to be called at submitting the data.
I can Imagine the date collected at drag&dropping still must be saved at the proper variable before saving the data.
BTW, ITMT i have switched to http://drupal.org/project/multiupload_imagefield_widget
Comment #9
decipheredFixed in 7.x-1.x