diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-10 05:14:09 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-10 05:14:09 -0700 |
commit | e276ffedd3d979c43067c53dd87e8024cd782352 (patch) | |
tree | a0364c57217d0469b97d61db8684633fb84d32bc | |
parent | cf554fd8043a984dfc475bc10d161b96f0ce7b4b (diff) | |
parent | bf00ccd1d6e3ca6ab21458f73a270c1a07c54fd6 (diff) | |
download | nextcloud-server-e276ffedd3d979c43067c53dd87e8024cd782352.tar.gz nextcloud-server-e276ffedd3d979c43067c53dd87e8024cd782352.zip |
Merge pull request #5257 from owncloud/files-ie8-regularfileactionsbroken
Fixed files view regular file actions in IE8
-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 0679da334de..a6d2e44f34f 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -36,7 +36,7 @@ $totalsize = 0; ?> <?php else: ?> <a class="name" href="<?php p(rtrim($_['downloadURL'],'/').'/'.trim($directory,'/').'/'.$name); ?>"> <label class="filetext" title="" for="select-<?php p($file['fileid']); ?>"></label> - <span class="nametext"><?php print_unescaped(htmlspecialchars($file['basename']));?><span class='extension'><?php p($file['extension']);?></span> + <span class="nametext"><?php print_unescaped(htmlspecialchars($file['basename']));?><span class='extension'><?php p($file['extension']);?></span></span> </a> <?php endif; ?> <?php if($file['type'] == 'dir'):?> |