Drupal has a "Fallback date format" which always uses the US notation: MM/DD/YYYY
With Drupal being used a lot in non US projects this is actually a problem since the fallback format can't be edited and is used when a format is not provided.
Example of a module not passing a date format in a date value: https://git.drupalcode.org/project/webform/-/blob/8.x-5.x/src/WebformSub...
In the above line:
($entity->{$name}->value ? $date_formatter->format($entity->{$name}->value) : '')
should be (for example)
($entity->{$name}->value ? $date_formatter->format($entity->{$name}->value ,'long') : '')
/admin/config/regional/date-time
Fallback date format
can't be edited and is using US notation.Option 1 should be enough for everybody.
Needs work
10.1 ✨
A change record needs to be drafted before an issue is committed. Note: Change records used to be called change notifications.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
No activities found.