Commit 4ce32f84 authored by Abdullah Yassin's avatar Abdullah Yassin Committed by Fabian de Rijk
Browse files

Issue #3270061: Fix spellcheck for "Removed selected items from the flood table" button text

parent f22746e4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ flood_control.settings:
   _form: 'Drupal\flood_control\Form\FloodControlSettingsForm'
 requirements:
   _permission: 'administer site configuration'

flood_control.unblock_form:
  path: '/admin/people/flood-unblock'
  defaults:
+1 −1
Original line number Diff line number Diff line
@@ -194,7 +194,7 @@ class FloodUnblockAdminForm extends FormBase {
    // Provides the remove submit button.
    $form['remove'] = [
      '#type' => 'submit',
      '#value' => $this->t('Removed selected items from the flood table'),
      '#value' => $this->t('Remove selected items from the flood table'),
      '#validate' => ['::validateRemoveItems'],
    ];
    if (count($options) == 0) {