diff options
Diffstat (limited to 'Project-Unite/Views/Stats/Codepoints.cshtml')
| -rw-r--r-- | Project-Unite/Views/Stats/Codepoints.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project-Unite/Views/Stats/Codepoints.cshtml b/Project-Unite/Views/Stats/Codepoints.cshtml index 81b8467..7321f1e 100644 --- a/Project-Unite/Views/Stats/Codepoints.cshtml +++ b/Project-Unite/Views/Stats/Codepoints.cshtml @@ -29,7 +29,7 @@ <ul class="pagination"> @for(int i = 1; i <= Model.PageCount; i++) { - if (i == Model.CurrentPage - 1) + if (i == Model.CurrentPage + 1) { <li class="active">@Html.ActionLink(i.ToString(), "Codepoints", "Stats", new { id = i }, null)</li> } |
