summaryrefslogtreecommitdiffstats
path: root/application/views/file_plaintext/upload_history.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/file_plaintext/upload_history.php')
-rw-r--r--application/views/file_plaintext/upload_history.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php
deleted file mode 100644
index 53801494f..000000000
--- a/application/views/file_plaintext/upload_history.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-$dateformat = "r";
-$lengths["date"] = max($lengths["date"], strlen(date($dateformat, time())));
-echo
- mb_str_pad($fields["id"], $lengths["id"])." | "
- .mb_str_pad($fields["filename"], $lengths["filename"])." | "
- .mb_str_pad($fields["mimetype"], $lengths["mimetype"])." | "
- .mb_str_pad($fields["date"], $lengths["date"])." | "
- .mb_str_pad($fields["hash"], $lengths["hash"])." | "
- .mb_str_pad($fields["filesize"], $lengths["filesize"])."\n";
-
-foreach($items as $key => $item) {
- echo
- mb_str_pad($item["id"], $lengths["id"])." | "
- .mb_str_pad($item["filename"], $lengths["filename"])." | "
- .mb_str_pad($item["mimetype"], $lengths["mimetype"])." | "
- .date($dateformat, $item["date"])." | "
- .mb_str_pad($item["hash"], $lengths["hash"])." | "
- .$item["filesize"]."\n";
-}
-?>
-
-Total sum of your distinct uploads: <?php echo $total_size; ?>.