A "Fatal Error" JS popup occurs when uploading a file.

Spoke with chx in #drupal -- was an incorrect function call on line 545.

$form = _form_builder('upload_js', $form);

should be:

$form = form_builder('upload_js', $form);

Fixed it for me. Patch attached.

(My first actual .patch, yay! Set up TurtoiseCVS...)

--D

CommentFileSizeAuthor
upload.module_32.patch664 bytesDaveNotik

Comments

tangent’s picture

This works for me.

drewish’s picture

+1, works for me

dries’s picture

Status: Reviewed & tested by the community » Fixed

Committed to HEAD. Thanks.

Anonymous’s picture

Status: Fixed » Closed (fixed)