diff options
author | Unknwon <u@gogs.io> | 2017-03-25 04:17:55 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2017-03-25 04:17:55 -0400 |
commit | c238647020b71221bd84014ea8a9e1b36b13e9d3 (patch) | |
tree | 861e1e50f1df936447a5d792e2fc1cdf2aa4b73f /models/org_team.go | |
parent | 78f94986e383ac2bb6d11157b652f09496b673f5 (diff) |
cmd/web: remove dependency version checker
Diffstat (limited to 'models/org_team.go')
-rw-r--r-- | models/org_team.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/org_team.go b/models/org_team.go index 7d690238..816f2370 100644 --- a/models/org_team.go +++ b/models/org_team.go @@ -31,7 +31,7 @@ type Team struct { func (t *Team) AfterSet(colName string, _ xorm.Cell) { switch colName { case "num_repos": - // LEGACY [0.11]: this is backward compatibility bug fix for https://github.com/gogits/gogs/issues/3671 + // LEGACY [1.0]: this is backward compatibility bug fix for https://github.com/gogits/gogs/issues/3671 if t.NumRepos < 0 { t.NumRepos = 0 } |