From 4b149b042e97e623e6902b770bbb827cff1986c1 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 31 Oct 2013 14:16:23 +0100 Subject: Fix alignment of date column in plain text view This got broken by 2a6a1c63cb21015009fe4fd13f62cdac64e1fe36 and 05a4d686b578794c180ddfaf4945a9d7443f330e. Signed-off-by: Florian Pritz --- application/views/file_plaintext/upload_history.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php index f0ed0fa95..f9a14af0b 100644 --- a/application/views/file_plaintext/upload_history.php +++ b/application/views/file_plaintext/upload_history.php @@ -1,4 +1,6 @@ $item) { mb_str_pad($item["id"], $lengths["id"])." | " .mb_str_pad($item["filename"], $lengths["filename"])." | " .mb_str_pad($item["mimetype"], $lengths["mimetype"])." | " - .date("r", $item["date"])." | " + .date($dateformat, $item["date"])." | " .$item["hash"]." | " .$item["filesize"]."\n"; } -- cgit v1.2.3-24-g4f1b