diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-12-12 11:18:35 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-12-12 11:18:35 +0100 |
commit | 15ecb28d50e5b8ce4100075caa52d96d4f00ae13 (patch) | |
tree | 02ca5b15c2a09afaa6a44a71fcf14d3c53184200 /lib/private/files/cache/cache.php | |
parent | 25dde7e93bc648ec8cd14b8f2711d50f77d8d1bf (diff) | |
download | nextcloud-server-15ecb28d50e5b8ce4100075caa52d96d4f00ae13.tar.gz nextcloud-server-15ecb28d50e5b8ce4100075caa52d96d4f00ae13.zip |
Make $userId mandatory for searchByTags
$userId is now a mandatory parameter for searchByTags.
Also fixed some places in the code where the argument was missing (Node
API and View)
Diffstat (limited to 'lib/private/files/cache/cache.php')
-rw-r--r-- | lib/private/files/cache/cache.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/private/files/cache/cache.php b/lib/private/files/cache/cache.php index a4ae3a069fe..9df64db7f07 100644 --- a/lib/private/files/cache/cache.php +++ b/lib/private/files/cache/cache.php @@ -512,10 +512,7 @@ class Cache { * @param string $userId owner of the tags * @return array file data */ - public function searchByTag($tag, $userId = null) { - if (is_null($userId)) { - $userId = \OC::$server->getUserSession()->getUser()->getUID(); - } + public function searchByTag($tag, $userId) { $sql = 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, ' . '`mimetype`, `mimepart`, `size`, `mtime`, ' . '`encrypted`, `unencrypted_size`, `etag`, `permissions` ' . |