You can choose in the DnDU option box an illegal upload widget, for instance a text widget.

If you do that you have a WSOD when you look at a content of this type ... AND a warning when coming back into your CCK type warning: array_values() [function.array-values]: The argument should be an array in ...dragndrop_uploads.module on line 146

Comments

deciphered’s picture

Hi Annakan,

Thanks for pointing that one out.

Simple fix:
Change line #14 of modules/filefield.inc from:

    if ($field['type_name'] == $type) {

To:

    if ($field['type_name'] == $type && $field['module'] == 'filefield') {

Will be committed ASAP.

Cheers,
Deciphered.

deciphered’s picture

Status: Active » Fixed

Forgot to mark this issue as fixed: http://drupal.org/cvs?commit=307628

Cheers,
Deciphered.

deciphered’s picture

Status: Fixed » Closed (fixed)