It seems that the "Open File Browser" link that is supposed to show above the file upload input field will not display because the following line in imce_filefield.js is incorrect:
Line 13: var $file = $('#' + fieldID + '-upload', context);
should be changed to:
var $file = $('#' + fieldID, context);
Once this is done, the link appears as expected.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | imce_filefield_fix_file_browser_link.diff | 590 bytes | bcdev |
Comments
Comment #2
bcdev commentedHere's a patch which fixed the issue for me.
Comment #3
avpaderno