Skip to content

Commit

Permalink
Fix escaping issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
adunsulag committed Jun 21, 2024
1 parent 0a3c579 commit 6ade6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/prescription/general_edit.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
<label>{{'Provider'|xlt}}</label>
<select class="input sm form-control" name="provider_id">
{% for providerId, providerName in prescription.provider.utility_provider_array() %}
<option value="{{ provider.id }}" {% if providerId == prescription.provider.get_id() %} selected="selected" {% endif %}>{{ providerName|text }}</option>
<option value="{{ provider.id|attr }}" {% if providerId == prescription.provider.get_id() %} selected="selected" {% endif %}>{{ providerName|text }}</option>
{% endfor %}
</select>
<input type="hidden" name="patient_id" value="{{prescription.patient.id|attr}}" />
Expand Down

0 comments on commit 6ade6c4

Please sign in to comment.