diff options
author | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-10 18:26:43 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2014-10-16 10:15:43 +0200 |
commit | 0254a3c406f2a945e2b01bbde3044d5a60751750 (patch) | |
tree | 9f2381ffc04cd8bf3fe5ed4fa56b772e25e122fa /lib/private | |
parent | c8d8578d1aac26373060e401cf50e734007c0b1c (diff) | |
download | nextcloud-server-0254a3c406f2a945e2b01bbde3044d5a60751750.tar.gz nextcloud-server-0254a3c406f2a945e2b01bbde3044d5a60751750.zip |
make trashbin compatible with objectstore, replace glob with search in cache, make unknown free space work like unlimited free space
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/files/view.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 95f3e9a2c7f..3d3406af94e 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1110,6 +1110,16 @@ class View { } /** + * search for files with the name matching $query + * + * @param string $query + * @return FileInfo[] + */ + public function searchRaw($query) { + return $this->searchCommon($query, 'search'); + } + + /** * search for files by mimetype * * @param string $mimetype |