Merge pull request #5491 from tobiasd/20180725-issue1391

Make profile settings available in the user settings
2022.09-rc
Michael Vogel 2018-07-25 11:18:01 +02:00 zatwierdzone przez GitHub
commit 3e5f8ee70a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -79,6 +79,7 @@ General
../settings
---------
* o - Account
* p - Profiles
* t - Additional features
* w - Social Networks
* l - Addons

Wyświetl plik

@ -60,6 +60,13 @@ function settings_init(App $a)
],
];
$tabs[] = [
'label' => L10n::t('Profiles'),
'url' => 'profiles',
'selected' => (($a->argc == 1) && ($a->argv[0] === 'profiles')?'active':''),
'accesskey' => 'p',
];
if (Feature::get()) {
$tabs[] = [
'label' => L10n::t('Additional features'),