diff options
Diffstat (limited to 'application/views/file')
-rw-r--r-- | application/views/file/upload_form.php | 1 | ||||
-rw-r--r-- | application/views/file/upload_history.php | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php index 5eea494e1..d8f2748c1 100644 --- a/application/views/file/upload_form.php +++ b/application/views/file/upload_form.php @@ -47,5 +47,6 @@ document.write('\ <?php if($contact_me_url) {?><p>If you experience any problems feel free to <a href="<?php echo $contact_me_url; ?>">contact me</a>.</p> <br /><?php }; ?> <div class="small"> + <p>Icons by <a href="http://p.yusukekamiyamane.com/">Yusuke Kamiyamane</a></p> <p>This service is provided without warranty of any kind and may not be used to distribute copyrighted content.</p> </div> diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index 5d61c7331..910af1535 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -7,6 +7,7 @@ <table class="results"> <tr> + <th></th> <th>ID</th> <th>Filename</th> <th>Mimetype @@ -16,6 +17,7 @@ <?php foreach($query as $key => $item): ?> <tr class="<?php echo even_odd(); ?>"> + <td><a href="<?php echo site_url("file/delete/".$item["id"]); ?>"><img src="<?php echo base_url(); ?>data/img/fuge-icons/cross.png" /></a></td> <td><a href="<?php echo site_url("/".$item["id"]); ?>/"><?php echo $item["id"]; ?></a></td> <td><?php echo $item["filename"]; ?></td> <td><?php echo $item["mimetype"]; ?></td> |