diff --git a/core/modules/system/lib/Drupal/system/Controller/ConfigController.php b/core/modules/system/lib/Drupal/system/Controller/ConfigController.php index f7aefab..68893bc 100644 --- a/core/modules/system/lib/Drupal/system/Controller/ConfigController.php +++ b/core/modules/system/lib/Drupal/system/Controller/ConfigController.php @@ -7,9 +7,9 @@ namespace Drupal\system\Controller; +use Drupal\Core\Controller\ControllerInterface; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\DependencyInjection\ContainerInterface; -use Drupal\Core\ControllerInterface; use Drupal\Core\Entity\EntityManager; use Drupal\Core\Entity\Query\QueryFactory; use Drupal\system\SystemManager; diff --git a/core/modules/system/system.admin.inc b/core/modules/system/system.admin.inc index 8d028d1..6203bfa 100644 --- a/core/modules/system/system.admin.inc +++ b/core/modules/system/system.admin.inc @@ -867,7 +867,7 @@ function theme_admin_block($variables) { $output .= '

' . $block['title'] . '

'; } if (!empty($block['content'])) { - $output .= '
' . $block['content'] . '
'; + $output .= '
' . drupal_render($block['content']) . '
'; } else { $output .= '
' . $block['description'] . '
';