array_flip fails on NULL

Created on 10 June 2023, almost 2 years ago

Problem/Motivation

I need to import roles but it fails

Steps to reproduce

When using drush and running
drush migrate:import upgrade_d7_user

It explodes as this

TypeError: array_flip(): Argument #1 ($array) must be of type array, null given in /var/www/fleet.samtrans.se-web/web/modules/contrib/content_access/content_access.module on line 175 #0 /var/www/fleet.samtrans.se-web/web/modules/contrib/content_access/content_access.module(175): array_flip(NULL)

Proposed resolution

My solution is adding (array) as this

  if ($entity instanceof RoleInterface) {
    $roles_gids = array_flip((array)$config->get('content_access_roles_gids'));

Remaining tasks

Then it works

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Fixed

Version

2.0

Component

Code

Created by

πŸ‡ΈπŸ‡ͺSweden arne_hortell

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024