diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-18 10:09:11 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2011-04-18 10:09:11 +0200 |
commit | 944a05b5887174d401481f39c771473d32f4e430 (patch) | |
tree | d83fcf8f02e1fafdb09c092a8a66f5c21772bdcf /files | |
parent | 03747a0ffbb177de43db306f43e2896eb9cf740f (diff) | |
download | nextcloud-server-944a05b5887174d401481f39c771473d32f4e430.tar.gz nextcloud-server-944a05b5887174d401481f39c771473d32f4e430.zip |
convert special chars to entities
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/part.list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php index 76d938326b6..1c30d5a3311 100644 --- a/files/templates/part.list.php +++ b/files/templates/part.list.php @@ -1,7 +1,7 @@ <?php foreach($_["files"] as $file): ?> <tr> <td class="selection"><input type="checkbox" /></td> - <td class="filename"><a style="background-image:url(<?php if($file["type"] == "dir") echo mimetype_icon("dir"); else echo mimetype_icon($file["mime"]); ?>)" href="<?php if($file["type"] == "dir") echo link_to("files", "index.php?dir=".$file["directory"]."/".$file["name"]); else echo link_to("files", "download.php?file=".$file["directory"]."/".$file["name"]); ?>" title=""><?php echo $file["name"]; ?></a></td> + <td class="filename"><a style="background-image:url(<?php if($file["type"] == "dir") echo mimetype_icon("dir"); else echo mimetype_icon($file["mime"]); ?>)" href="<?php if($file["type"] == "dir") echo link_to("files", "index.php?dir=".$file["directory"]."/".$file["name"]); else echo link_to("files", "download.php?file=".$file["directory"]."/".$file["name"]); ?>" title=""><?php echo htmlspecialchars($file["name"]); ?></a></td> <td class="filesize"><?php echo human_file_size($file["size"]); ?></td> <td class="date"><?php if($file["type"] != "dir") echo $file["date"]; ?></td> <td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td> |