Hello,
I am getting the error below everytime I upload files with uploadify.
warning: array_key_exists() [function.array-key-exists]: The second argument should be either an array or an object in /.../sites/all/modules/uploadify/uploadify.module on line 672.
In my current configuration I have about 4 upload filefields on the node edit form, all using uploadify and all multivalue fields.
The files end up uploading ok, but the warning appears for every single file every time that I upload using uploadify.
Thanks,
KH
Comments
Comment #1
ircdirk commentedI edited file uploadify.module around line 672:
added "if(is_array($form) || is_object($form)){ ( existing php code) }" and it works...
Comment #2
makara commentedThanks ircdirk. Committed.