Skip to content

Commit

Permalink
MDL-56580 core_form: Unescape select attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta committed Oct 28, 2016
1 parent 577bd70 commit 5306a00
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{#error}}
autofocus aria-describedby="id_error_{{element.name}}"
{{/error}}
{{element.attributes}} >
{{{element.attributes}}} >
{{#element.options}}
<option value="{{value}}" {{#selected}}selected{{/selected}}>{{text}}</option>
{{/element.options}}
Expand Down
2 changes: 1 addition & 1 deletion theme/boost/templates/core_form/element-select.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{#error}}
autofocus aria-describedby="id_error_{{element.name}}"
{{/error}}
{{element.attributes}} >
{{{element.attributes}}} >
{{#element.options}}
<option value="{{value}}" {{#selected}}selected{{/selected}}>{{text}}</option>
{{/element.options}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{#error}}
autofocus aria-describedby="id_error_{{element.name}}"
{{/error}}
{{element.attributes}} >
{{{element.attributes}}} >
{{#element.options}}
<option value="{{value}}" {{#selected}}selected{{/selected}}>{{text}}</option>
{{/element.options}}
Expand Down

0 comments on commit 5306a00

Please sign in to comment.