diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-11-16 01:10:19 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-11-16 01:10:19 +0100 |
commit | 0a1937208fed65f35c7c94290621a056888be293 (patch) | |
tree | 00e8b68eac902dc3f5d56ea6da0f48336ae5ebca /apps | |
parent | 939257992407fa5d7cfb71cd2ca93d504b0f9738 (diff) | |
download | nextcloud-server-0a1937208fed65f35c7c94290621a056888be293.tar.gz nextcloud-server-0a1937208fed65f35c7c94290621a056888be293.zip |
Fixes a 500 without userid
plus cleanup of unused use statements
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/lib/Controller/HelpController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/HelpController.php b/apps/settings/lib/Controller/HelpController.php index eaad0be6709..b09392aa8c8 100644 --- a/apps/settings/lib/Controller/HelpController.php +++ b/apps/settings/lib/Controller/HelpController.php @@ -50,7 +50,7 @@ class HelpController extends Controller { IRequest $request, INavigationManager $navigationManager, IURLGenerator $urlGenerator, - string $userId, + ?string $userId, IGroupManager $groupManager ) { parent::__construct($appName, $request); |