summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-08-28 21:04:21 +0200
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2013-09-19 21:08:32 +0300
commit3b4020e81131cd526a6bbffe14bc14f1cac4fd60 (patch)
tree4617785b04148bd345ab2209451b719615d1524f /apps
parent466fd8acda010ad330930055925ce26ede1fbf06 (diff)
downloadnextcloud-server-3b4020e81131cd526a6bbffe14bc14f1cac4fd60.tar.gz
nextcloud-server-3b4020e81131cd526a6bbffe14bc14f1cac4fd60.zip
add all results, sharing cache also returns entries for shared files in external storages
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/lib/cache.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php
index 82588df42d2..acb064f31aa 100644
--- a/apps/files_sharing/lib/cache.php
+++ b/apps/files_sharing/lib/cache.php
@@ -249,10 +249,10 @@ class Shared_Cache extends Cache {
while ($row = $result->fetchRow()) {
if (substr($row['path'], 0, 6)==='files/') {
$row['path'] = substr($row['path'],6); // remove 'files/' from path as it's relative to '/Shared'
- $row['mimetype'] = $this->getMimetype($row['mimetype']);
- $row['mimepart'] = $this->getMimetype($row['mimepart']);
- $files[] = $row;
- } // else skip results out of the files folder
+ }
+ $row['mimetype'] = $this->getMimetype($row['mimetype']);
+ $row['mimepart'] = $this->getMimetype($row['mimepart']);
+ $files[] = $row;
}
}
return $files;