]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frio/templates/field_select.tpl
Merge pull request #6497 from MrPetovan/bug/6383-delivery-no-data
[friendica.git] / view / theme / frio / templates / field_select.tpl
index 594b91002efa5e246f783772ec538c106f9c6ed6..2a609ed71dadbca0fd1b8707f811f842abe0ffe7 100644 (file)
@@ -2,9 +2,9 @@
 <div class="form-group field select">
                <label for="id_{{$field.0}}">{{$field.1}}</label>
                <select name="{{$field.0}}" id="id_{{$field.0}}" class="form-control" aria-describedby="{{$field.0}}_tip">
-                       {{foreach $field.4 as $opt=>$val}}<option value="{{$opt|escape:'html'}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
+                       {{foreach $field.4 as $opt=>$val}}<option value="{{$opt}}" {{if $opt==$field.2}}selected="selected"{{/if}}>{{$val}}</option>{{/foreach}}
                </select>
                {{if $field.3}}
-               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3}}</span>
+               <span class="help-block" id="{{$field.0}}_tip" role="tooltip">{{$field.3 nofilter}}</span>
                {{/if}}
 </div>