diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-28 09:46:52 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-28 09:46:52 +0100 |
commit | 03a1a20316300734fd1b7b3f8cf1f83bf92bbb92 (patch) | |
tree | b5633371bef7f94a5f266edf1f54f52f2f88712c /apps/files | |
parent | 31d83fddc482959d7fb4f7377cc7020c59c30951 (diff) | |
download | nextcloud-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.php | 2 |
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; ?> |