diff options
| author | Michael <[email protected]> | 2017-05-02 16:20:50 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-05-02 16:20:50 -0400 |
| commit | ab87ec65979e0644a37b3f407eeb48dca23a1408 (patch) | |
| tree | a12c34897d8e85657bf13f57e6daa617d008c0a1 | |
| parent | 642b082c34a95aae82e8e6e86eda8a1fb73a7849 (diff) | |
| download | project-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.tar.gz project-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.tar.bz2 project-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.zip | |
remove unneeded @if
| -rw-r--r-- | Project-Unite/Views/Stats/Pong.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Project-Unite/Views/Stats/Pong.cshtml b/Project-Unite/Views/Stats/Pong.cshtml index c14ed4a..5e123a7 100644 --- a/Project-Unite/Views/Stats/Pong.cshtml +++ b/Project-Unite/Views/Stats/Pong.cshtml @@ -30,7 +30,7 @@ <ul class="pagination"> @for(int i = 1; i <= Model.PageCount; i++) { - @if (i == Model.CurrentPage) + if (i == Model.CurrentPage) { <li class="active">@Html.ActionLink(i.ToString(), "Pong", "Stats", null, new { id = i })</li> } |
