diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-10-22 15:43:17 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-10-22 22:39:18 +0200 |
commit | 4f552d5135074bf8ea78a8a8dfbdc93fe4ec41e3 (patch) | |
tree | 92926b73f6cb1fa6c44127a6da166c23d07f9fae /application/views/file | |
parent | de02b8cb514a95c100d0ec11ab469acfc687ca00 (diff) |
ID/info: add missing htmlspecialchars()
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file')
-rw-r--r-- | application/views/file/file_info.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/file/file_info.php b/application/views/file/file_info.php index 779ece854..82a3e4f81 100644 --- a/application/views/file/file_info.php +++ b/application/views/file/file_info.php @@ -7,7 +7,7 @@ </tr> <tr> <td class="title">Filename</td> - <td class="text"><?php echo $filedata["filename"]; ?></td> + <td class="text"><?php echo htmlspecialchars($filedata["filename"]); ?></td> </tr> <tr> <td class="title">Date of upload</td> |