diff options
author | Robin Appelman <icewind@owncloud.com> | 2014-01-29 16:33:27 +0100 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2014-01-29 16:33:27 +0100 |
commit | 4e2b52a376d2aab5e0f9d0034a8e2bfa196c08bd (patch) | |
tree | 78094fbe60703eae8e4eb1d5d7a42d249a515f21 /apps/files/templates/part.list.php | |
parent | fc5f20112efe03b203978c4b1045ed70c2ce5e74 (diff) | |
parent | f5f918b8bf5279fd174fe520c21f83c902904843 (diff) | |
download | nextcloud-server-4e2b52a376d2aab5e0f9d0034a8e2bfa196c08bd.tar.gz nextcloud-server-4e2b52a376d2aab5e0f9d0034a8e2bfa196c08bd.zip |
merge master into fileinfo
Diffstat (limited to 'apps/files/templates/part.list.php')
-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 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" |