[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port some templates to Twig #13207

Merged
merged 3 commits into from
Apr 28, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix unwanted escape on select_lang template
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
  • Loading branch information
MauricioFauth committed Apr 24, 2017
commit 9e5a6139b7cea7b260c63a11993a7161855b92f1
6 changes: 3 additions & 3 deletions templates/select_lang.twig
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

{% if use_fieldset %}
<fieldset>
<legend lang="en" dir="ltr">{{ language_title }}</legend>
<legend lang="en" dir="ltr">{{ language_title|raw }}</legend>
{% else %}
<bdo lang="en" dir="ltr">
<label for="sel-lang">{{ language_title }}</label>
<label for="sel-lang">{{ language_title|raw }}</label>
</bdo>
{% endif %}

Expand All @@ -19,7 +19,7 @@
selected="selected"
{%- endif -%}
>
{{ language.getName() }}
{{ language.getName()|raw }}
</option>
{% endfor %}

Expand Down