summaryrefslogtreecommitdiff
path: root/Project-Unite
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-05-02 16:20:50 -0400
committerMichael <[email protected]>2017-05-02 16:20:50 -0400
commitab87ec65979e0644a37b3f407eeb48dca23a1408 (patch)
treea12c34897d8e85657bf13f57e6daa617d008c0a1 /Project-Unite
parent642b082c34a95aae82e8e6e86eda8a1fb73a7849 (diff)
downloadproject-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.tar.gz
project-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.tar.bz2
project-unite-ab87ec65979e0644a37b3f407eeb48dca23a1408.zip
remove unneeded @if
Diffstat (limited to 'Project-Unite')
-rw-r--r--Project-Unite/Views/Stats/Pong.cshtml2
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>
}