Use MD_STD::strtotime() over strtotime()

This commit is contained in:
2024-05-04 01:19:52 +02:00
parent 63ac1b296e
commit fb1372d193

View File

@ -944,7 +944,7 @@ final class MD_STD {
return -1 * intval(str_replace("-", "", ltrim($date, "0-")));
}
return intval(date("Ymd", strtotime($date)));
return intval(date("Ymd", self::strtotime($date)));
}