- πΊπΈUnited States jakegibs617
This patch is no longer working for
"drupal/ultimate_cron": "^2.0@alpha"
, https://www.drupal.org/project/ultimate_cron/releases/8.x-2.0-alpha6 β which is the Drupal 10 compatible version.the new line is now:
$row['started']['#markup'] = $log_entry->start_time ? \Drupal::service('date.formatter')->format((int) $log_entry->start_time, "short") : $this->t('Never');
compared to the old
- $row['started']['#markup'] = $log_entry->start_time ? \Drupal::service('date.formatter')->format($log_entry->start_time, "short") : $this->t('Never'); + $row['started']['#markup'] = $log_entry->start_time ? \Drupal::service('date.formatter')->format($start_time, "short") : $this->t('Never');
It seems since they added (int) that we do not need this patch any more.
Is this accurate?