From a095b011463266cef242eeceddb6808435f7f5e3 Mon Sep 17 00:00:00 2001 From: Waldo Jaquith Date: Mon, 29 Jan 2024 15:54:17 -0500 Subject: [PATCH] Fix date format This is not MySQL. --- bin/get_video.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/get_video.php b/bin/get_video.php index d22e05d..d8e5ead 100644 --- a/bin/get_video.php +++ b/bin/get_video.php @@ -345,4 +345,4 @@ function delete($message) $video_handler->submit(); $log->put('Stored new ' . ucfirst($video->chamber) . ' ' . $video->type . ' video, for ' - . date('%M %d, %Y', strtotime($video->date)) . ': ' . $video->path, 4); + . date('M d, Y', strtotime($video->date)) . ': ' . $video->path, 4);