diff options
author | Unknown <joe2010xtmf@163.com> | 2014-04-27 01:06:57 -0600 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-04-27 01:06:57 -0600 |
commit | ce05a8d7b6939b4f67a8e779bcc784d1b8ef8fab (patch) | |
tree | 4863a004973ba569d39e8f7d6c9fc3ddffb39bd5 /routers | |
parent | 62d23e91541550d0478c4884696e918a0e818b4f (diff) | |
parent | 9fdf4bc2776f07774f6303536400858aa0bcb8aa (diff) | |
download | gitea-ce05a8d7b6939b4f67a8e779bcc784d1b8ef8fab.tar.gz gitea-ce05a8d7b6939b4f67a8e779bcc784d1b8ef8fab.zip |
Merge branch 'dev' of github.com:gogits/gogs into dev
Conflicts:
templates/repo/single_list.tmpl
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/commit.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go index 6e20a7b7f4..9ecc697d27 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -92,7 +92,7 @@ func Diff(ctx *middleware.Context, params martini.Params) { } ctx.Data["IsImageFile"] = isImageFile - ctx.Data["Title"] = commit.Message() + " · " + base.ShortSha(commitId) + ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitId) ctx.Data["Commit"] = commit ctx.Data["Diff"] = diff ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0 |