diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-02-19 11:20:28 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-02-19 11:20:28 +0100 |
commit | 28290de0665bdba2129fde7901b28b6299566e56 (patch) | |
tree | 6915340e054cc41da024fc33734778df19ad6173 /application/views/file/upload_history.php | |
parent | f0ca06e49d6f916c1b0e6d49de3a6d8200d01d6e (diff) |
encode special chars in some places
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file/upload_history.php')
-rw-r--r-- | application/views/file/upload_history.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index f4ae5051e..b90d59be8 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -19,7 +19,7 @@ <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 htmlspecialchars($item["filename"]); ?></td> <td><?php echo $item["mimetype"]; ?></td> <td><?php echo $item["date"]; ?></td> <td><?php echo $item["hash"]; ?></td> |