diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-01-17 14:21:15 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-01-17 14:22:05 +0100 |
commit | f4c198b907f3cbd59555a72693c48123736b7cbb (patch) | |
tree | fcad5dd60684dacee61c95dae7458162361e358f | |
parent | 16033c81235e76af2900fdc8fd9340546301d45c (diff) | |
download | nextcloud-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
-rw-r--r-- | apps/files/templates/part.list.php | 2 | ||||
-rw-r--r-- | apps/files_sharing/public.php | 2 |
2 files changed, 2 insertions, 2 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" diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index ef4345da20e..d050efd5b32 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -189,8 +189,8 @@ if (isset($path)) { } else { $i['extension'] = ''; } - $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($i['mimetype']); } + $i['isPreviewAvailable'] = \OC::$server->getPreviewManager()->isMimeSupported($i['mimetype']); $i['directory'] = $getPath; $i['permissions'] = OCP\PERMISSION_READ; $i['icon'] = determineIcon($i, $basePath, $token); |