I've been testing formfilter and love the ability to simplify forms. However, I was having a strange error regarding "parameters" not being passed, line 890 of the upload module and no uploads would work. When I disabled this module all was fine. I'd really like to use it, but need to be able to have uploads working as well.

Comments

fractile81’s picture

Status: Active » Needs review

I believe this is the same problem I'm running into (also with uploads). Line formfilter.module:54 reads:

function formfilter_form_alter(&$form_id, &$form) {

The $form_id argument is not something that should be changeable, and thus not defined with a reference operator (the &). Change the line to read like the following, and the error I was experiencing will go away:

function formfilter_form_alter($form_id, &$form) {

If this isn't your problem, or doesn't fix it, my apologies!

nedjo’s picture

Status: Needs review » Fixed

Thanks fractile81, patch applied.

Anonymous’s picture

Status: Fixed » Closed (fixed)