diff --git a/core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php b/core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php index 08a5062..576f54d 100644 --- a/core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php +++ b/core/modules/system/lib/Drupal/system/Form/ModulesUninstallForm.php @@ -90,14 +90,8 @@ public function buildForm(array $form, array &$form_state) { $form['uninstall'] = array( '#type' => 'table', '#header' => array( - 'title' => array( - 'data' => $this->t('Name'), - 'specifier' => 'name', - ), - 'description' => array( - 'data' => $this->t('Description'), - 'specifier' => 'description', - ), + 'title' => array('data' => $this->t('Name')), + 'description' => array('data' => $this->t('Description')), ), '#empty' => $this->t('There are no items yet. Disable a module', array( '@add-url' => url('admin/modules'),