Skip to content
Snippets Groups Projects

Automated Project Update Bot fixes

15 files
+ 47
44
Compare changes
  • Side-by-side
  • Inline
Files
15
@@ -161,7 +161,7 @@ class SupportTicketController extends ControllerBase implements ContainerInjecti
return $this->t('Revision of %title from %date',
[
'%title' => $support_ticket->label(),
'%date' => format_date($support_ticket->getRevisionCreationTime()),
'%date' => \Drupal::service('date.formatter')->format($support_ticket->getRevisionCreationTime()),
]
);
}
@@ -214,7 +214,7 @@ class SupportTicketController extends ControllerBase implements ContainerInjecti
);
}
else {
$link = $support_ticket->link($date);
$link = $support_ticket->toLink($date)->toString();
}
$row = [];
Loading