From 4e6b6ba3b891cab79717f0cbb34c241790937886 Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 10 Dec 2013 22:52:54 -0800 Subject: [PATCH] Issue #2084257 by beowulf1416 | joachim: Standardize variable in buildHeader(). --- .../field_ui/lib/Drupal/field_ui/FieldListController.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldListController.php b/core/modules/field_ui/lib/Drupal/field_ui/FieldListController.php index 0025379c954..16ecfe997d2 100644 --- a/core/modules/field_ui/lib/Drupal/field_ui/FieldListController.php +++ b/core/modules/field_ui/lib/Drupal/field_ui/FieldListController.php @@ -89,13 +89,13 @@ class FieldListController extends ConfigEntityListController { * {@inheritdoc} */ public function buildHeader() { - $row['id'] = t('Field name'); - $row['type'] = array( + $header['id'] = t('Field name'); + $header['type'] = array( 'data' => t('Field type'), 'class' => array(RESPONSIVE_PRIORITY_MEDIUM), ); - $row['usage'] = t('Used in'); - return $row; + $header['usage'] = t('Used in'); + return $header; } /**