Active
Project:
Uploadify
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
3 May 2010 at 01:48 UTC
Updated:
16 Jan 2012 at 18:52 UTC
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
Comment #1
makara commentedNow I understand this issue. Assigning to myself.
Comment #2
Dandily commentedThis 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');