diff options
author | Unknown <joe2010xtmf@163.com> | 2014-03-23 08:40:40 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-03-23 08:40:40 -0400 |
commit | 97debac18534e030924654befc6dc1eeb870a38b (patch) | |
tree | 957bc269e6dcf176f1c242e8be2a7f461daa12c8 /modules/base/tool.go | |
parent | 97e82a0ff6286fd0a42281cd1e34dd734110e2f4 (diff) | |
download | gitea-97debac18534e030924654befc6dc1eeb870a38b.tar.gz gitea-97debac18534e030924654befc6dc1eeb870a38b.zip |
SSL enable config option
Diffstat (limited to 'modules/base/tool.go')
-rw-r--r-- | modules/base/tool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go index b48566f542..6d31b05252 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -519,7 +519,7 @@ func ActionDesc(act Actioner, avatarLink string) string { buf.WriteString(fmt.Sprintf(TPL_COMMIT_REPO_LI, avatarLink, actUserName, repoName, commit[0], commit[0][:7], commit[1]) + "\n") } if push.Len > 3 { - buf.WriteString(fmt.Sprintf(`<div><a href="/%s/%s/commits">%d other commits >></a></div>`, actUserName, repoName, push.Len)) + buf.WriteString(fmt.Sprintf(`<div><a href="/%s/%s/commits/%s">%d other commits >></a></div>`, actUserName, repoName, branch, push.Len)) } return fmt.Sprintf(TPL_COMMIT_REPO, actUserName, actUserName, actUserName, repoName, branch, branch, actUserName, repoName, actUserName, repoName, buf.String()) |