Skip to content

Commit

Permalink
fix(admin-plugin): issue with emitter twig function #234
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Sep 14, 2019
1 parent 426a073 commit 806b18e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions site/plugins/admin/views/partials/base.html
Expand Up @@ -8,7 +8,7 @@
<meta name="author" content="">
<meta name="robots" content="noindex,nofollow">

{{ emitter.emit('onAdminThemeMeta') }}
{% do emitter.emit('onAdminThemeMeta') %}

<title>FLEXTYPE</title>

Expand Down Expand Up @@ -58,7 +58,7 @@
}
</style>

{{ emitter.emit('onAdminThemeHeader') }}
{% do emitter.emit('onAdminThemeHeader') %}
{% endblock %}
</head>
<body {% if not is_logged %} class="content-full-size" {% endif %}>
Expand Down Expand Up @@ -227,7 +227,7 @@
</div>
</div>

{{ emitter.emit('onAdminThemeFooter') }}
{% do emitter.emit('onAdminThemeFooter') %}

{% if registry.settings.locale == 'en_US' %}
{% set locale = 'en' %}
Expand Down

0 comments on commit 806b18e

Please sign in to comment.