diff --git a/core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php b/core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php index 8bb8168..e689784 100644 --- a/core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php +++ b/core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php @@ -102,7 +102,7 @@ public function render(ResultRow $values) { '#status' => $mark, '#access' => ($mark == MARK_NEW || $mark == MARK_UPDATED), ); - return $this->renderLink(drupal_render($build), $values); + return $this->renderLink(\Drupal::service('renderer')->render($build), $values); } }