diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-12 00:40:35 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-12 00:40:35 +0200 |
commit | 9d661eab23f9ba284e4a5060b5de5d868b330d45 (patch) | |
tree | fad66c115977496771994af191648963b658001c /apps/files_trashbin | |
parent | 5af111b0decdc3e922d152dd12322064fc663eba (diff) | |
download | nextcloud-server-9d661eab23f9ba284e4a5060b5de5d868b330d45.tar.gz nextcloud-server-9d661eab23f9ba284e4a5060b5de5d868b330d45.zip |
adding calls to \OCA\files\lib\Helper::determineIcon($i) in files, trashbin and sharing
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r-- | apps/files_trashbin/index.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 0baeab1de97..d7eb143f9af 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -65,6 +65,7 @@ foreach ($result as $r) { } $i['permissions'] = OCP\PERMISSION_READ; $i['isPreviewAvailable'] = \OCP\Preview::isMimeSupported($r['mime']); + $i['icon'] = \OCA\files\lib\Helper::determineIcon($i); $files[] = $i; } |