diff --git a/core/modules/block/block.install b/core/modules/block/block.install index 0a6cb1f..7c7779e 100644 --- a/core/modules/block/block.install +++ b/core/modules/block/block.install @@ -79,7 +79,10 @@ function block_update_8001() { // We not only store the missing context mappings but also the previous // block status, in order to allow contributed and custom modules to do // their own updates. - $update_backup[$block->get('id')] = ['missing_context_ids' => $backup_values, 'status' => $block->get('status')]; + $update_backup[$block->get('id')] = [ + 'missing_context_ids' => $backup_values, + 'status' => $block->get('status') + ]; } }