From 15ecb28d50e5b8ce4100075caa52d96d4f00ae13 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 12 Dec 2014 11:18:35 +0100 Subject: 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) --- lib/private/files/filesystem.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/private/files/filesystem.php') diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 3d55564f0c6..ed2be59c092 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -688,10 +688,11 @@ class Filesystem { /** * @param string|int $tag name or tag id + * @param string $userId owner of the tags * @return FileInfo[] array or file info */ - static public function searchByTag($tag) { - return self::$defaultInstance->searchByTag($tag); + static public function searchByTag($tag, $userId) { + return self::$defaultInstance->searchByTag($tag, $userId); } /** -- cgit v1.2.3