diff --git a/Configuration/src/ConfigurationProviders/Views/Home/PlaceholderValues.cshtml b/Configuration/src/ConfigurationProviders/Views/Home/PlaceholderValues.cshtml index 919e9e5f..85c9cf97 100644 --- a/Configuration/src/ConfigurationProviders/Views/Home/PlaceholderValues.cshtml +++ b/Configuration/src/ConfigurationProviders/Views/Home/PlaceholderValues.cshtml @@ -15,11 +15,11 @@ @if (Platform.IsWindows) { - @Html.Raw(Model.ResolvedFromPathEnvironmentVariable?.Replace(";", "
")) + @Html.Raw(Html.Encode(Model.ResolvedFromPathEnvironmentVariable).Replace(";", "
")) } else { - @Html.Raw(Model.ResolvedFromPathEnvironmentVariable?.Replace(":", "
")) + @Html.Raw(Html.Encode(Model.ResolvedFromPathEnvironmentVariable).Replace(":", "
")) }