8000 Updated choice_widget to display the preferred_choice separator only if c by whattheken · Pull Request #2289 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Updated choice_widget to display the preferred_choice separator only if c #2289

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

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
Updated choice_widget to display the preferred_choice separator only …
…if choice|length >0 and separator is not blank.
  • Loading branch information
robotron2000 committed Sep 28, 2011
commit da3891b3a581db25223cea97f42f184583aa1bbb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
{% if preferred_choices|length > 0 %}
{% set options = preferred_choices %}
{{ block('widget_choice_options') }}
{% if choices|length > 0 %}
{% if choices|length > 0 and separator != '' %}
<option disabled="disabled">{{ separator }}</option>
{% endif %}
{% endif %}
Expand Down
0