diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php index 4bab146..8b3c71b 100644 --- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php +++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Block/AggregatorFeedBlock.php @@ -142,8 +142,8 @@ public function build() { foreach ($result as $item) { $aggregator_block_item = array( '#type' => 'link', - '#href' => $item->getLink(), - '#title' => $item->label(), + '#href' => $item->link, + '#title' => $item->title, ); $items[] = drupal_render($aggregator_block_item); }