when editing a node with images in imagefield, after uploading new images with uploadify, old image titles are being deleted after a complete upload.

this module is magic and easy, as far as i can see... it keeps all filefield features in the original form.. thanks

Comments

makara’s picture

Assigned: Unassigned » makara

Now I understand this issue. Assigning to myself.

Dandily’s picture

This problem was only if title is "textarea". If "textfield" - everything is ok.
To solve this problem, open uploadify.module, line 798 and change this:

$want_types = array('select', 'radio', 'checkbox', 'textfield', 'value', 'hidden');

to this:

$want_types = array('select', 'radio', 'checkbox', 'textfield', 'textarea', 'value', 'hidden');