diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-23 06:34:41 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-23 06:34:41 -0400 |
commit | c386bb4bd314843a532012877e148ae70ee44672 (patch) | |
tree | dc506e4a3660e4581a2bfe1376fb67bd0cb37f3d /modules | |
parent | 1eb078d0a8c5424de9512d810ab2fbf21f59ff78 (diff) | |
download | gitea-c386bb4bd314843a532012877e148ae70ee44672.tar.gz gitea-c386bb4bd314843a532012877e148ae70ee44672.zip |
Bug fix
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base/tool.go | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go index edf7a953c9..b48566f542 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -515,16 +515,11 @@ func ActionDesc(act Actioner, avatarLink string) string { return err.Error() } buf := bytes.NewBuffer([]byte("\n")) - max := 3 - count := len(push.Commits) - if count < max { - max = count - } - for _, commit := range push.Commits[:max] { + for _, commit := range push.Commits { buf.WriteString(fmt.Sprintf(TPL_COMMIT_REPO_LI, avatarLink, actUserName, repoName, commit[0], commit[0][:7], commit[1]) + "\n") } - if count > max { - buf.WriteString(fmt.Sprintf(`<div><a href="/%s/%s/commits">%d other commits >></a></div>`, actUserName, repoName, count-max)) + if push.Len > 3 { + buf.WriteString(fmt.Sprintf(`<div><a href="/%s/%s/commits">%d other commits >></a></div>`, actUserName, repoName, push.Len)) } return fmt.Sprintf(TPL_COMMIT_REPO, actUserName, actUserName, actUserName, repoName, branch, branch, actUserName, repoName, actUserName, repoName, buf.String()) |