diff --git a/Zero-K.info/Views/Shared/UserDetail.cshtml b/Zero-K.info/Views/Shared/UserDetail.cshtml
index b582d1cbfc..777fac96ff 100644
--- a/Zero-K.info/Views/Shared/UserDetail.cshtml
+++ b/Zero-K.info/Views/Shared/UserDetail.cshtml
@@ -119,8 +119,8 @@
- @if (Model.Clan != null) { Html.PrintClan(Model.Clan, true, true); }
- else if (Model.Faction != null) { Html.PrintFaction(Model.Faction, true); }
+ @if (Model.Clan != null) { @Html.PrintClan(Model.Clan, true, true); }
+ else if (Model.Faction != null) { @Html.PrintFaction(Model.Faction, true); }
|
@@ -244,7 +244,7 @@
- @if (Global.IsModerator)
+ if (Global.IsModerator)
{
@Html.ActionLink("Admin user", "AdminUserDetail", "Users", new { id = Model.AccountID }, null)
diff --git a/Zero-K.info/asp.net.csproj b/Zero-K.info/asp.net.csproj
index 4daec84cab..6bf14bc626 100644
--- a/Zero-K.info/asp.net.csproj
+++ b/Zero-K.info/asp.net.csproj
@@ -666,6 +666,7 @@
+