From 31bcba74d1c4d0aa09651d3fda101d68da9b01c2 Mon Sep 17 00:00:00 2001 From: Gregory Rudolph Date: Tue, 31 Aug 2021 19:02:02 -0400 Subject: [PATCH] Fix Index page formatting for "all" --- Pages/Index.cshtml | 2 +- Pages/Index.cshtml.cs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Pages/Index.cshtml b/Pages/Index.cshtml index 9ec0ec2..4dfa0fb 100644 --- a/Pages/Index.cshtml +++ b/Pages/Index.cshtml @@ -53,7 +53,7 @@
Download Windows Client Here
- Download macOS Client Here
+ Download macOS Client Here

diff --git a/Pages/Index.cshtml.cs b/Pages/Index.cshtml.cs index d296944..84b1a16 100644 --- a/Pages/Index.cshtml.cs +++ b/Pages/Index.cshtml.cs @@ -75,6 +75,8 @@ namespace NightmareCoreWeb2.Pages { if (name.Equals("all", StringComparison.OrdinalIgnoreCase)) { + + ViewData["Title"] = "All Characters"; string sql = "select username,name,level,race,class from characters.characters join auth.account on characters.characters.account = auth.account.id"; QuerySQL(sql); return;