DEV: Don't interpret user field names as HTML (#18317)

This isn't a security bug, because only admins can create user fields
and we have to trust admins, because they can change themes, which are
shown site-wide and can contain unrestricted JS.
This commit is contained in:
Daniel Waterworth 2022-09-21 12:21:58 -05:00 committed by GitHub
parent a11aea4fe2
commit e37ced96bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{{#if this.field.name}}
<label class="control-label">
{{html-safe this.field.name}} {{#if this.field.required}}<span class="required">*</span>{{/if}}
{{this.field.name}} {{#if this.field.required}}<span class="required">*</span>{{/if}}
</label>
{{/if}}

View File

@ -1,5 +1,5 @@
<label class="control-label" for={{concat "user-" this.elementId}}>
{{html-safe this.field.name}}
{{this.field.name}}
{{#if this.field.required}}
<span class="required">*</span>
{{/if}}

View File

@ -1,5 +1,5 @@
<label class="control-label" for={{concat "user-" this.elementId}}>
{{html-safe this.field.name}}
{{this.field.name}}
{{#if this.field.required}}
<span class="required">*</span>
{{/if}}

View File

@ -1,5 +1,5 @@
<label class="control-label" for={{concat "user-" this.elementId}}>
{{html-safe this.field.name}}
{{this.field.name}}
{{#if this.field.required}}<span class="required">*</span>{{/if}}
</label>
<div class="controls">