diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2014-03-26 14:11:49 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2014-03-26 14:11:49 +0800 |
commit | 74859010d59e88e84beaac11b4a5e172d73a1164 (patch) | |
tree | 3c217e170b49fea1ec7f4eaf1df14b8a4763d84e | |
parent | 8c63169718d053eba843b37b0ef69c7900a0d701 (diff) | |
download | gitea-74859010d59e88e84beaac11b4a5e172d73a1164.tar.gz gitea-74859010d59e88e84beaac11b4a5e172d73a1164.zip |
bug fixed
-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 0dec7aa8dd..4a8a124dd4 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -490,7 +490,7 @@ func ActionIcon(opType int) string { const ( TPL_CREATE_REPO = `<a href="/user/%s">%s</a> created repository <a href="/%s/%s">%s</a>` - TPL_COMMIT_REPO = `<a href="/user/%s">%s</a> pushed to <a href="/%s/%s/tree/%s">%s</a> at <a href="/%s/%s">%s/%s</a>%s` + TPL_COMMIT_REPO = `<a href="/user/%s">%s</a> pushed to <a href="/%s/%s/src/%s">%s</a> at <a href="/%s/%s">%s/%s</a>%s` TPL_COMMIT_REPO_LI = `<div><img id="gogs-user-avatar-commit" src="%s?s=16" alt="user-avatar" title="username"/> <a href="/%s/%s/commit/%s">%s</a> %s</div>` ) |