I am running one of my backdrop sites on PHP 8, and I see the following warning 4 times on every page:
Deprecated function: Required parameter $form_state follows optional parameter $input in include_once() (line 1509 of backdrop/core/includes/bootstrap.inc).
This error is not terribly useful, since that line is
include_once BACKDROP_ROOT . '/' . $filename;
But I think I've tracked this down to the references module, since the same instances of $form_state follows optional parameter $input in two places, and by fixing those my warnings go away :)
I am running one of my backdrop sites on PHP 8, and I see the following warning 4 times on every page:
This error is not terribly useful, since that line is
But I think I've tracked this down to the references module, since the same instances of $form_state follows optional parameter $input in two places, and by fixing those my warnings go away :)