Use MD_STD::strtotime() over strtotime()

This commit is contained in:
Joshua Ramon Enslin 2024-05-04 01:19:52 +02:00
parent 63ac1b296e
commit fb1372d193
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

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