[ticket/16859] Twigify the rest of respective template block

PHPBB3-16859
This commit is contained in:
rxu 2021-08-29 11:10:00 +07:00
parent 2c8be65dcf
commit 8cc0e5438a
No known key found for this signature in database
GPG key ID: 955F0567380E586A

View file

@ -59,8 +59,8 @@
<!-- EVENT ucp_register_options_before -->
{% if S_LANG_OPTIONS %}
<dl>
<dt><label for="lang">{L_LANGUAGE}{L_COLON}</label></dt>
<dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{L_LANGUAGE}">{S_LANG_OPTIONS}</select></dd>
<dt><label for="lang">{{ lang('LANGUAGE') ~ lang('COLON') }}</label></dt>
<dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{{ lang('LANGUAGE') }}">{{ S_LANG_OPTIONS }}</select></dd>
</dl>
{% endif %}