summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-14 20:41:49 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-08-14 20:41:49 +0200
commit137d644963b07d6c35ae7bbec58717daf3e977b2 (patch)
tree512973adfacd52b2ca6052d23b4753cbf048d084 /apps/files
parentcba0f696226d344e5caf25631eefb92213c8b6c2 (diff)
parenta255cc60075e9dab831754ff09cb522c37ea421f (diff)
downloadnextcloud-server-137d644963b07d6c35ae7bbec58717daf3e977b2.tar.gz
nextcloud-server-137d644963b07d6c35ae7bbec58717daf3e977b2.zip
Merge branch 'oc_preview' of github.com:owncloud/core into oc_preview
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/templates/part.list.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php
index 93d1aaf9dca..bd1fe341f8d 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -25,7 +25,11 @@ $totalsize = 0; ?>
data-mime="<?php p($file['mimetype'])?>"
data-size='<?php p($file['size']);?>'
data-permissions='<?php p($file['permissions']); ?>'>
+ <?php if(\OCP\Preview::isMimeSupported($file['mimetype'])): ?>
+ <td class="filename svg preview-icon"
+ <?php else: ?>
<td class="filename svg"
+ <?php endif; ?>
<?php if($file['type'] == 'dir'): ?>
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon('dir')); ?>)"
<?php else: ?>
@@ -34,13 +38,13 @@ $totalsize = 0; ?>
$relativePath = substr($relativePath, strlen($_['sharingroot']));
?>
<?php if(\OCP\Preview::isMimeSupported($file['mimetype'])): ?>
- style="background-image:url(<?php print_unescaped(OCP\publicPreview_icon($relativePath, $_['sharingtoken'])); ?>)" class="preview-icon"
+ style="background-image:url(<?php print_unescaped(OCP\publicPreview_icon($relativePath, $_['sharingtoken'])); ?>)"
<?php else: ?>
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon($file['mimetype'])); ?>)"
<?php endif; ?>
<?php else: ?>
<?php if(\OCP\Preview::isMimeSupported($file['mimetype'])): ?>
- style="background-image:url(<?php print_unescaped(OCP\preview_icon($relativePath)); ?>)" class="preview-icon"
+ style="background-image:url(<?php print_unescaped(OCP\preview_icon($relativePath)); ?>)"
<?php else: ?>
style="background-image:url(<?php print_unescaped(OCP\mimetype_icon($file['mimetype'])); ?>)"
<?php endif; ?>