diff options
| author | Michael <[email protected]> | 2017-05-02 16:26:33 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-02 16:26:33 -0400 |
| commit | c3c9587d433ad580ed94f5aaf6ee15e1baf1539d (patch) | |
| tree | 304ea13d50d9635ca3abba3d21379ff3c21f5528 | |
| parent | ab87ec65979e0644a37b3f407eeb48dca23a1408 (diff) | |
| download | project-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.tar.gz project-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.tar.bz2 project-unite-c3c9587d433ad580ed94f5aaf6ee15e1baf1539d.zip | |
fix pagination bug
| -rw-r--r-- | Project-Unite/Views/Stats/Pong.cshtml | 4 |
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 |
