From c3c9587d433ad580ed94f5aaf6ee15e1baf1539d Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 2 May 2017 16:26:33 -0400 Subject: [PATCH] fix pagination bug --- Project-Unite/Views/Stats/Pong.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Project-Unite/Views/Stats/Pong.cshtml b/Project-Unite/Views/Stats/Pong.cshtml index 5e123a7..faea446 100644 --- a/Project-Unite/Views/Stats/Pong.cshtml +++ b/Project-Unite/Views/Stats/Pong.cshtml @@ -32,11 +32,11 @@ { if (i == Model.CurrentPage) { -
  • @Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })
  • +
  • @Html.ActionLink(i.ToString(), "Pong", "Stats", new { id = i }, null)
  • } else { -
  • @Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })
  • +
  • @Html.ActionLink(i.ToString(), "Pong", "Stats", new { id = i }, null)
  • } } \ No newline at end of file