diff --git a/core/modules/block_content/src/BlockContentAccessControlHandler.php b/core/modules/block_content/src/BlockContentAccessControlHandler.php index cce94dae85..d49e951697 100644 --- a/core/modules/block_content/src/BlockContentAccessControlHandler.php +++ b/core/modules/block_content/src/BlockContentAccessControlHandler.php @@ -54,8 +54,8 @@ public static function createInstance(ContainerInterface $container, EntityTypeI * {@inheritdoc} */ protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) { - // Allow access to user with the 'edit any (type) block' permission or the - // 'administer blocks' permission. + // Allow view and update access to user with the 'edit any (type) block' + // permission or the 'administer blocks' permission. $permission = 'edit any ' . $entity->bundle() . ' block'; if ($operation === 'view') { $access = AccessResult::allowedIf($entity->isPublished())