Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-10-12 19:24:25 +0300
committerbrantje <brantje@gmail.com>2016-10-12 19:24:25 +0300
commitd0fa4bd27c445ac16d63574ba1d33d2a5d2c4850 (patch)
tree935d0b4890aa3c72cdffed79e91ed9ee40a4028e /controller
parent1c1f583d11c905e5580d89be6c211c80db62e5c0 (diff)
Removed required instance of IUser
This because when using link sharing $UserId is not an instance of IUser.
Diffstat (limited to 'controller')
-rw-r--r--controller/sharecontroller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/sharecontroller.php b/controller/sharecontroller.php
index 00284a68..b49821de 100644
--- a/controller/sharecontroller.php
+++ b/controller/sharecontroller.php
@@ -55,7 +55,7 @@ class ShareController extends ApiController {
public function __construct($AppName,
IRequest $request,
- IUser $UserId,
+ $UserId,
IGroupManager $groupManager,
IUserManager $userManager,
ActivityService $activityService,