Only show sharing section if it has content
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
5b602723b1
commit
9ed21f521b
|
@ -80,6 +80,9 @@ class Personal implements ISettings {
|
|||
* @since 9.1
|
||||
*/
|
||||
public function getSection() {
|
||||
if (!$this->federatedShareProvider->isOutgoingServer2serverShareEnabled()) {
|
||||
return null;
|
||||
}
|
||||
return 'sharing';
|
||||
}
|
||||
|
||||
|
|
|
@ -171,6 +171,10 @@ class Manager implements IManager {
|
|||
continue;
|
||||
}
|
||||
|
||||
if ($setting->getSection() === null) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!isset($this->settings[$settingsType][$setting->getSection()])) {
|
||||
$this->settings[$settingsType][$setting->getSection()] = [];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue