aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-01-28 09:46:52 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-01-28 09:46:52 +0100
commit03a1a20316300734fd1b7b3f8cf1f83bf92bbb92 (patch)
treeb5633371bef7f94a5f266edf1f54f52f2f88712c /apps/files
parent31d83fddc482959d7fb4f7377cc7020c59c30951 (diff)
downloadnextcloud-server-03a1a20316300734fd1b7b3f8cf1f83bf92bbb92.tar.gz
nextcloud-server-03a1a20316300734fd1b7b3f8cf1f83bf92bbb92.zip
fixing href for folders
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/templates/part.list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php
index f3f06d61d66..ffa029360dc 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -28,7 +28,7 @@
>
<?php if(!isset($_['readonly']) || !$_['readonly']): ?><input type="checkbox" /><?php endif; ?>
<?php if($file['type'] == 'dir'): ?>
- <a class="name" href="<?php $_['baseURL'].$directory.'/'.$name; ?>)" title="">
+ <a class="name" href="<?php echo $_['baseURL'].$directory.'/'.$name; ?>" title="">
<?php else: ?>
<a class="name" href="<?php echo $_['downloadURL'].$directory.'/'.$name; ?>" title="">
<?php endif; ?>