merged branch mborgmann/patch-1 (PR #5930)

This PR was merged into the master branch.

Commits
-------

04e93d8 Update UPGRADE-2.1.md

Discussion
----------

Update UPGRADE-2.1.md

Change on selectedchoice part, because "choice.value" wont work, but just "value" does.
This commit is contained in:
Fabien Potencier 2012-11-08 18:03:26 +01:00
commit a541363502

View File

@ -560,7 +560,7 @@
{% endfor %}
</optgroup>
{% else %}
<option value="{{ choice.value }}"{% if choice is selectedchoice(choice.value) %} selected="selected"{% endif %}>
<option value="{{ choice.value }}"{% if choice is selectedchoice(value) %} selected="selected"{% endif %}>
{{ label }}
</option>
{% endif %}