Skip to content

Commit

Permalink
Merge pull request #682 from x00x70/patch-4
Browse files Browse the repository at this point in the history
Update settings-profile.html.twig

Temp fix for #672
  • Loading branch information
lcharette authored Apr 6, 2017
2 parents 5b2ed9f + 6479d6c commit 3114df3
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
<label for="input-locale" class="control-label">{{translate("LOCALE")}}</label>
<select id="input-locale" class="form-control js-select2" name="locale" {{page.visibility}}>
{% for option, label in locales %}
<option value="{{option}}" {% if (option == current_user.locale) %}selected{% endif %}>{{label}}</option>
{% if label is not empty %}
<option value="{{option}}" {% if (option == current_user.locale) %}selected{% endif %}>{{label}}</option>
{% endif %}
{% endfor %}
</select>
<p class="help-block">{{translate("LOCALE.ACCOUNT")}}.</p>
Expand Down

0 comments on commit 3114df3

Please sign in to comment.