Allow additional personal settings via normal registration

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2020-09-04 15:21:48 +02:00 committed by backportbot[bot]
parent c3a6f50206
commit 9e9ed6c251
1 changed files with 2 additions and 1 deletions

View File

@ -261,7 +261,8 @@ class Manager implements IManager {
$sections = [];
$legacyForms = \OC_App::getForms('personal');
if (!empty($legacyForms) && $this->hasLegacyPersonalSettingsToRender($legacyForms)) {
if ((!empty($legacyForms) && $this->hasLegacyPersonalSettingsToRender($legacyForms))
|| count($this->getPersonalSettings('additional')) > 1) {
$sections[98] = [new Section('additional', $this->l->t('Additional settings'), 0, $this->url->imagePath('core', 'actions/settings-dark.svg'))];
}