From 453b4bbd51fa0a557f206bbf724b822bd41e64ee Mon Sep 17 00:00:00 2001 From: Caleb Thorne Date: Tue, 2 Feb 2016 13:57:14 -0700 Subject: [PATCH] Issue #2661440 by draenen: Fixes fatal error: undefined function MigrationGroupListBuilder::label at /admin/structure/migrate --- src/Controller/MigrationGroupListBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/MigrationGroupListBuilder.php b/src/Controller/MigrationGroupListBuilder.php index 144915b..d46d518 100644 --- a/src/Controller/MigrationGroupListBuilder.php +++ b/src/Controller/MigrationGroupListBuilder.php @@ -47,7 +47,7 @@ class MigrationGroupListBuilder extends ConfigEntityListBuilder { * @see Drupal\Core\Entity\EntityListController::render() */ public function buildRow(EntityInterface $entity) { - $row['label'] = $this->label(); + $row['label'] = $entity->label(); $row['machine_name'] = $entity->id(); $row['description'] = $entity->get('description'); $row['source_type'] = $entity->get('source_type'); -- 2.5.0