From 05a4d686b578794c180ddfaf4945a9d7443f330e Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 18 Jul 2013 00:19:49 +0200 Subject: Fix missing conversion of timestamps on plaintext upload_history Got lost in 2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 Signed-off-by: Florian Pritz --- application/views/file_plaintext/upload_history.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'application') diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php index b4dbf6091..f0ed0fa95 100644 --- a/application/views/file_plaintext/upload_history.php +++ b/application/views/file_plaintext/upload_history.php @@ -12,7 +12,7 @@ foreach($query as $key => $item) { mb_str_pad($item["id"], $lengths["id"])." | " .mb_str_pad($item["filename"], $lengths["filename"])." | " .mb_str_pad($item["mimetype"], $lengths["mimetype"])." | " - .$item["date"]." | " + .date("r", $item["date"])." | " .$item["hash"]." | " .$item["filesize"]."\n"; } -- cgit v1.2.3-24-g4f1b