From 04ad79d12d9c0620b51bae2feb674b06993c5e25 Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Fri, 17 Jul 2020 13:20:49 +0100 Subject: [PATCH] Issue #3159793 by stefvanlooveren, borisson_: Typo in the media library settings form --- core/modules/media_library/src/Form/SettingsForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/media_library/src/Form/SettingsForm.php b/core/modules/media_library/src/Form/SettingsForm.php index 68193583f58..434cd684d20 100644 --- a/core/modules/media_library/src/Form/SettingsForm.php +++ b/core/modules/media_library/src/Form/SettingsForm.php @@ -35,7 +35,7 @@ class SettingsForm extends ConfigFormBase { '#type' => 'checkbox', '#title' => $this->t('Enable advanced UI'), '#default_value' => $this->config('media_library.settings')->get('advanced_ui'), - '#description' => $this->t('If checked, users creating new media items in the media library will see a summary of their selected media items, and they will be able insert their selection directly into the media field or text editor.'), + '#description' => $this->t('If checked, users creating new media items in the media library will see a summary of their selected media items, and they will be able to insert their selection directly into the media field or text editor.'), ]; return parent::buildForm($form, $form_state); }