diff options
Diffstat (limited to 'application/views')
-rw-r--r-- | application/views/file_plaintext/upload_history.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/application/views/file_plaintext/upload_history.php b/application/views/file_plaintext/upload_history.php index 4e9308d91..87586babd 100644 --- a/application/views/file_plaintext/upload_history.php +++ b/application/views/file_plaintext/upload_history.php @@ -1,11 +1,11 @@ <?php echo - mb_str_pad("ID", $lengths["id"])." | " - .mb_str_pad("Filename", $lengths["filename"])." | " - .mb_str_pad("Mimetype", $lengths["mimetype"])." | " - .mb_str_pad("Date", $lengths["date"])." | " - .mb_str_pad("Hash", $lengths["hash"])." | " - .mb_str_pad("Size", $lengths["filesize"])."\n"; + 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($query as $key => $item) { echo |