Merge pull request #11966 from annando/date-correction

Juts another date format fix
This commit is contained in:
Hypolite Petovan 2022-10-06 17:39:44 -04:00 committed by GitHub
commit fe442683ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -189,12 +189,13 @@ class DateTimeFormat
['#(\d+-\d+-\d+)T(\d+:\d+:\d+\.\d+)ZZ#', '$1T$2Z'], ['#(\d+-\d+-\d+)T(\d+:\d+:\d+\.\d+)ZZ#', '$1T$2Z'],
['#(\w+), (\d+ \w+ \d+) (\d+:\d+:\d+) (.+)#', '$2 $3 $4'], ['#(\w+), (\d+ \w+ \d+) (\d+:\d+:\d+) (.+)#', '$2 $3 $4'],
['#(\d+:\d+) (\w+), (\w+) (\d+), (\d+)#', '$1 $2 $3 $4 $5'], ['#(\d+:\d+) (\w+), (\w+) (\d+), (\d+)#', '$1 $2 $3 $4 $5'],
['#(\w+ \d+, \d+) - (\d+:\d+)#', '$1, $2'],
]; ];
foreach ($patterns as $pattern) { foreach ($patterns as $pattern) {
$dateString = preg_replace($pattern[0], $pattern[1], $dateString); $dateString = preg_replace($pattern[0], $pattern[1], $dateString);
} }
return $dateString; return $dateString;
} }