mirror of
https://github.com/friendica/friendica
synced 2024-11-10 05:02:58 +00:00
Show node's theme as selected in display setting for new users
This commit is contained in:
parent
ada699536a
commit
ac53ee8e0f
1 changed files with 2 additions and 2 deletions
|
@ -912,8 +912,8 @@ function settings_content(App $a)
|
|||
}
|
||||
}
|
||||
|
||||
$theme_selected = Session::get('theme', $default_theme);
|
||||
$mobile_theme_selected = Session::get('mobile-theme', $default_mobile_theme);
|
||||
$theme_selected = $a->user['theme'] ?: $default_theme;
|
||||
$mobile_theme_selected = $a->user['mobile-theme'] ?: $default_mobile_theme;
|
||||
|
||||
$nowarn_insecure = intval(PConfig::get(local_user(), 'system', 'nowarn_insecure'));
|
||||
|
||||
|
|
Loading…
Reference in a new issue