diff --git a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php index 431e31a..7e47d78 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php +++ b/core/modules/views/lib/Drupal/views/Plugin/Block/ViewsBlockBase.php @@ -163,10 +163,10 @@ public function buildConfigurationForm(array $form, array &$form_state) { */ public function blockSubmit($form, &$form_state) { if (!empty($form_state['values']['views_label_checkbox'])) { - $this->setConfigurationValue('views_label', $form_state['values']['label']); + $this->configuration['views_label'] = $form_state['values']['label']; } else { - $this->setConfigurationValue('views_label', ''); + $this->configuration['views_label'] = ''; } }