diff --git a/core/modules/block/lib/Drupal/block/BlockRenderController.php b/core/modules/block/lib/Drupal/block/BlockRenderController.php index 1541edd..a2fe80b 100644 --- a/core/modules/block/lib/Drupal/block/BlockRenderController.php +++ b/core/modules/block/lib/Drupal/block/BlockRenderController.php @@ -38,9 +38,9 @@ public function viewMultiple(array $entities = array(), $view_mode = 'full', $la foreach ($entities as $entity_id => $entity) { $plugin = $entity->getPlugin(); $plugin_id = $plugin->getPluginId(); - $configuration = $plugin->getConfig(); if ($content = $plugin->build()) { + $configuration = $plugin->getConfig(); $build[$entity_id] = array( '#theme' => 'block', 'content' => $content,