- Issue created by @jifernandezs
Automatically closed - issue fixed for 2 weeks with no activity.
I need to remove this line for a our enviroment.
Deprecated function: Automatic conversion of false to array is deprecated en quickedit_entity_view_alter() (lΓnea 234 de /var/www/html/web/modules/contrib/quickedit/quickedit.module)
You may install Drupal 10.4.1 version.
Before of the next line:
$build['#cache']['contexts'][] = 'user.permissions';
We should add:
if (!isset($build['#cache']['contexts']) || !is_array($build['#cache']['contexts'])) {
$build['#cache'] = [];
}
$build['#cache']['contexts'][] = 'user.roles:authenticated';
Active
1.0
Code
Automatically closed - issue fixed for 2 weeks with no activity.