summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-02 16:26:33 -0400
committerMichael <[email protected]>2017-05-02 16:26:33 -0400
commitc3c9587d433ad580ed94f5aaf6ee15e1baf1539d (patch)
tree304ea13d50d9635ca3abba3d21379ff3c21f5528
parentab87ec65979e0644a37b3f407eeb48dca23a1408 (diff)
downloadproject-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.tar.gz
project-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.tar.bz2
project-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.zip
fix pagination bug
-rw-r--r--Project-Unite/Views/Stats/Pong.cshtml4
1 files 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)
{
- <li class="active">@Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })</li>
+ <li class="active">@Html.ActionLink(i.ToString(), "Pong", "Stats", new { id = i }, null)</li>
}
else
{
- <li>@Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })</li>
+ <li>@Html.ActionLink(i.ToString(), "Pong", "Stats", new { id = i }, null)</li>
}
}
</ul> \ No newline at end of file