- Issue created by @arne_hortell
- πΈπͺSweden arne_hortell
My patch
diff --git a/content_access.module b/content_access.module index e507418..9c16db8 100644 --- a/content_access.module +++ b/content_access.module @@ -172,7 +172,7 @@ function content_access_entity_insert(EntityInterface $entity) { $config = \Drupal::configFactory()->getEditable('content_access.settings'); if ($entity instanceof RoleInterface) { - $roles_gids = array_flip($config->get('content_access_roles_gids')); + $roles_gids = array_flip((array)$config->get('content_access_roles_gids')); $roles_gids[] = $entity->id(); $config->set('content_access_roles_gids', array_flip($roles_gids)); $config->save();
- last update
almost 2 years ago 9 pass -
arne_hortell β
authored 9f18995d on 2.0.x
Issue #3366001 by arne_hortell: Argument 1 to array_flip must be array
-
arne_hortell β
authored 9f18995d on 2.0.x
- Status changed to Fixed
almost 2 years ago 11:15am 10 June 2023 - π³π΄Norway gisle Norway
Looks good.
This has been committed to the latest snapshot of the 2.0.x-dev branch.
Automatically closed - issue fixed for 2 weeks with no activity.