From c6318824f8e3d125b9d062b711e7896b79291a1c Mon Sep 17 00:00:00 2001 From: Dries Date: Tue, 5 Nov 2013 21:01:12 -0500 Subject: [PATCH] Issue #2104517 by Sree, swentel: Vocabulary list controller should not add the 'weight' key in buildHeader(). --- .../taxonomy/lib/Drupal/taxonomy/VocabularyListController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListController.php index bcf7877b031..ff93edeb74c 100644 --- a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListController.php +++ b/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyListController.php @@ -61,7 +61,6 @@ class VocabularyListController extends DraggableListController { */ public function buildHeader() { $header['label'] = t('Vocabulary name'); - $header['weight'] = t('Weight'); return $header + parent::buildHeader(); }