From 0971848bc3d674b0e63f4f49bd704259cd3e648a Mon Sep 17 00:00:00 2001 From: ilotterytea Date: Mon, 6 Oct 2025 14:17:40 +0500 Subject: fix: DateMalformedStringException --- public/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'public/index.php') diff --git a/public/index.php b/public/index.php index dd92e66..e1cfbce 100644 --- a/public/index.php +++ b/public/index.php @@ -165,7 +165,7 @@ if (FILE_CATALOG_FANCY_VIEW && $file_id) { $file['html_description'] .= " - {$file['views']} views"; } if (isset($file['uploaded_at'])) { - $file['html_description'] .= ' - Uploaded ' . format_timestamp(strtotime($file['uploaded_at'])) . ' ago'; + $file['html_description'] .= ' - Uploaded ' . format_timestamp($file['uploaded_at']) . ' ago'; } if (isset($file['resolution'])) { $file['html_description'] .= " - {$file['resolution']}"; -- cgit v1.2.3