Skip to content

Commit 059a968

Browse files
committed
Fixed problem that global_theme setting was not respected
This fixes issue #880
1 parent 1daf6f0 commit 059a968

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/base.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939

4040

41-
{% if not app.user.theme is defined %}
41+
{% if not app.user.theme is defined or app.user.theme is null %}
4242
{% set theme = global_theme %}
4343
{% else %}
4444
{% set theme = app.user.theme %}

0 commit comments

Comments
 (0)