summaryrefslogtreecommitdiffstats
path: root/apps/files/templates
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2014-01-17 14:21:15 +0100
committerVincent Petry <pvince81@owncloud.com>2014-01-17 14:22:05 +0100
commitf4c198b907f3cbd59555a72693c48123736b7cbb (patch)
treefcad5dd60684dacee61c95dae7458162361e358f /apps/files/templates
parent16033c81235e76af2900fdc8fd9340546301d45c (diff)
downloadnextcloud-server-f4c198b907f3cbd59555a72693c48123736b7cbb.tar.gz
nextcloud-server-f4c198b907f3cbd59555a72693c48123736b7cbb.zip
Fixed isPreviewAvailable warnings in log
isPreviewAvailable wasn't always set as the files formatting code is slightly different than the one from the files app. Fixes #6423
Diffstat (limited to 'apps/files/templates')
-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 2f630e1f014..f4fb96a7a7c 100644
--- a/apps/files/templates/part.list.php
+++ b/apps/files/templates/part.list.php
@@ -18,7 +18,7 @@ $totalsize = 0; ?>
data-size="<?php p($file['size']);?>"
data-etag="<?php p($file['etag']);?>"
data-permissions="<?php p($file['permissions']); ?>">
- <?php if($file['isPreviewAvailable']): ?>
+ <?php if(isset($file['isPreviewAvailable']) and $file['isPreviewAvailable']): ?>
<td class="filename svg preview-icon"
<?php else: ?>
<td class="filename svg"