/includes/form.inc
does not work properly with php8.
in line (around) 842 is the following code:
$form = call_user_func_array(isset($callback) ? $callback : $form_id, $args);
for php8 it should be
$form = call_user_func_array(isset($callback) ? $callback : $form_id, array_values($args));
$args is the problem....
Greetings
Berthold
Comments
Comment #2
poker10 commentedThanks for creating an issue here, @BLausch.
The bug report does not contain sufficient information to verify and check the problem. Please provide more information as required by the new issue template, or the message on the top of the page while creating an issue:
Thanks!
Comment #3
blausch commentedWhat are the steps required to reproduce the bug.....
if You make a ajax-request in a form the system will crash (500 Error)
I forget to mention that, Sorry...