summaryrefslogtreecommitdiffstats
path: root/lib/filesystem.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-01-31 16:12:49 +0100
committerRobin Appelman <icewind@owncloud.com>2012-01-31 16:12:49 +0100
commitc46f701771db9285e70a5b1d5a4b641046bf703c (patch)
tree2c020015d04ede4be9f158d48a36c1eb158c0e72 /lib/filesystem.php
parentdf67c35017d8794a4b1c83fd4e41658b2e6d0e75 (diff)
downloadnextcloud-server-c46f701771db9285e70a5b1d5a4b641046bf703c.tar.gz
nextcloud-server-c46f701771db9285e70a5b1d5a4b641046bf703c.zip
use filesystem cache for searching
Diffstat (limited to 'lib/filesystem.php')
-rw-r--r--lib/filesystem.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php
index 8502cfc08bb..5062ecf5c18 100644
--- a/lib/filesystem.php
+++ b/lib/filesystem.php
@@ -374,7 +374,7 @@ class OC_Filesystem{
}
static public function search($query){
- return self::$defaultInstance->search($query);
+ return OC_FileCache::search($query);
}
}