Browse Source
Return '0' instead of null
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
pull/5847/head
Lukas Reschke
8 years ago
committed by
Roeland Jago Douma
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with
1 additions and
1 deletions
-
settings/users.php
|
|
|
@ -73,7 +73,7 @@ $groupsInfo->setSorting($sortGroupsBy); |
|
|
|
list($adminGroup, $groups) = $groupsInfo->get(); |
|
|
|
|
|
|
|
$recoveryAdminEnabled = OC_App::isEnabled('encryption') && |
|
|
|
$config->getAppValue( 'encryption', 'recoveryAdminEnabled', null ); |
|
|
|
$config->getAppValue( 'encryption', 'recoveryAdminEnabled', '0'); |
|
|
|
|
|
|
|
if($isAdmin) { |
|
|
|
$subAdmins = \OC::$server->getGroupManager()->getSubAdmin()->getAllSubAdmins(); |
|
|
|
|