Issue #2084257 by beowulf1416 | joachim: Standardize variable in buildHeader().

8.0.x
webchick 2013-12-10 22:52:54 -08:00
parent c33c50beeb
commit 4e6b6ba3b8
1 changed files with 4 additions and 4 deletions

View File

@ -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;
}
/**