Skip to content

Commit 9612841

Browse files
committed
fix: added missing encoding
1 parent dcd4ce2 commit 9612841

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

phpmyfaq/assets/templates/admin/user/user-list.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
<td>{{ user.display_name }}</td>
5050
<td>
5151
<a href="mailto:{{ user.email | e('html_attr') }}">
52-
{{ user.email | e('html') }}
52+
{{ user.email | e('html_attr') }}
5353
</a>
5454
</td>
55-
<td>{{ user.login }}</td>
55+
<td>{{ user.login | e('html_attr') }}</td>
5656

5757
<td class="text-center"><i class="fa
5858
{% if user.status == 'active' %}

0 commit comments

Comments
 (0)