I get the following error when adding a node that has form support enabled.
Error: Unknown named parameter $textfield:title in rules_forms_invoke_event() (line 241 of ...\sites\all\modules\rules_forms\rules_forms.module).

Comments

frank.schram created an issue. See original summary.

quimic’s picture

I have the same error with php 8.0.

matio89’s picture

I fixed it by replacing call_user_func_array('rules_invoke_event', $args); by call_user_func_array('rules_invoke_event', array_values($args));
Attached a patch.

matio89’s picture

Status: Active » Needs review
cameron.seright’s picture

This patch worked for me, using PHP 8.1. Thank you!

aitala’s picture

Patch seems to work for me...

Thanks,
Eric