diff options
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r-- | application/views/file/upload_history.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 1dcaa8053..8f0f8e3d7 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -6,6 +6,7 @@ <th>Mimetype <th>Date</th> <th>Hash</th> + <th>Size</th> </tr> <?php foreach($query as $key => $item): ?> @@ -16,6 +17,7 @@ <td><?php echo $item["mimetype"]; ?></td> <td><?php echo $item["date"]; ?></td> <td><?php echo $item["hash"]; ?></td> + <td><?php echo $item["filesize"]; ?></td> </tr> <?php endforeach; ?> </table> |