From fb1372d19376c365e7eaecabfa8bad829b5250ee Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Sat, 4 May 2024 01:19:52 +0200 Subject: [PATCH] Use MD_STD::strtotime() over strtotime() --- src/MD_STD.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MD_STD.php b/src/MD_STD.php index 723f07f..5293da4 100644 --- a/src/MD_STD.php +++ b/src/MD_STD.php @@ -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))); }