1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-03-11 21:08:26 +00:00

Merge pull request from annando/negative-dates

Avoid "Failed to parse time string (-001-11-30T00:00:00+00:00 + 32 days)"
This commit is contained in:
Hypolite Petovan 2018-04-04 15:08:01 -04:00 committed by GitHub
commit 16650733b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,6 +109,9 @@ class DateTimeFormat
* months and days always start with 1.
*/
if (substr($s, 0, 10) <= '0001-01-01') {
if ($s < '0000-00-00') {
$s = '0000-00-00';
}
$d = new DateTime($s . ' + 32 days', new DateTimeZone('UTC'));
return str_replace('1', '0', $d->format($format));
}