mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 11:44:58 +08:00
Replaced Html.Encode with the new <%: %> syntax for auto encoding
--HG-- branch : dev
This commit is contained in:
@@ -22,10 +22,10 @@
|
||||
{ %>
|
||||
<tr>
|
||||
<td>
|
||||
<%=Html.Encode(row.User.UserName)%>
|
||||
<%: row.User.UserName %>
|
||||
</td>
|
||||
<td>
|
||||
<%=Html.Encode(row.User.Email)%>
|
||||
<%: row.User.Email %>
|
||||
</td>
|
||||
<td>
|
||||
<%=Html.ActionLink(T("Edit").ToString(), "Edit", new { row.User.Id })%> |
|
||||
|
Reference in New Issue
Block a user