mirror of
https://github.com/bitwarden/server.git
synced 2025-07-14 14:17:35 -05:00
[AC-1637] Replaced Html.Raw with HttpUtility.HtmlDecode
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
@inject Bit.Core.Settings.GlobalSettings GlobalSettings
|
||||
@using System.Web
|
||||
@model OrganizationViewModel
|
||||
@{
|
||||
ViewData["Title"] = "Organization: " + Html.Raw(Model.Organization.Name);
|
||||
ViewData["Title"] = "Organization: " + HttpUtility.HtmlDecode(Model.Organization.Name);
|
||||
}
|
||||
|
||||
<h1>Organization <small>@Html.Raw(Model.Organization.Name)</small></h1>
|
||||
<h1>Organization <small>@HttpUtility.HtmlDecode(Model.Organization.Name)</small></h1>
|
||||
|
||||
@if (Model.Provider != null)
|
||||
{
|
||||
|
Reference in New Issue
Block a user