summaryrefslogtreecommitdiffstats
path: root/files/templates
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-07-29 02:47:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-07-29 02:47:25 +0200
commit2d43f6e307e407635483ba503c404d5a2d24522d (patch)
treef5c21c87fa547c7615c72de52e559e8a20009558 /files/templates
parent468319fe049102bc62c59e81a49cbf5e62e0e0ad (diff)
downloadnextcloud-server-2d43f6e307e407635483ba503c404d5a2d24522d.tar.gz
nextcloud-server-2d43f6e307e407635483ba503c404d5a2d24522d.zip
make foldernames also bold after renaming
Diffstat (limited to 'files/templates')
-rw-r--r--files/templates/part.list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/templates/part.list.php b/files/templates/part.list.php
index a0ffb4b6073..e4e178cba16 100644
--- a/files/templates/part.list.php
+++ b/files/templates/part.list.php
@@ -10,7 +10,7 @@
<a class="name" 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="">
<span class="nametext">
<?php if($file['type'] == 'dir'):?>
- <strong><?php echo htmlspecialchars($file['name']);?></strong>
+ <?php echo htmlspecialchars($file['name']);?>
<?php else:?>
<?php echo htmlspecialchars($file['basename']);?><span class='extention'><?php echo $file['extention'];?></span>
<?php endif;?>