1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-01 17:05:48 +00:00

Minor fix for #3194

- Update locale bindata
This commit is contained in:
Unknwon 2016-06-27 16:38:35 +08:00
parent 2ce60ff314
commit 4bbb878d20
4 changed files with 9 additions and 5 deletions

View File

@ -17,7 +17,7 @@ import (
"github.com/gogits/gogs/modules/setting"
)
const APP_VER = "0.9.30.0601"
const APP_VER = "0.9.31.0627"
func init() {
runtime.GOMAXPROCS(runtime.NumCPU())

File diff suppressed because one or more lines are too long

View File

@ -30,7 +30,11 @@ const (
)
func Home(ctx *context.Context) {
ctx.Data["Title"] = ctx.Repo.Repository.Owner.Name + "/" + ctx.Repo.Repository.Name + ": " + ctx.Repo.Repository.Description
title := ctx.Repo.Repository.Owner.Name + "/" + ctx.Repo.Repository.Name
if len(ctx.Repo.Repository.Description) > 0 {
title += ": " + ctx.Repo.Repository.Description
}
ctx.Data["Title"] = title
ctx.Data["PageIsViewCode"] = true
ctx.Data["RequireHighlightJS"] = true

View File

@ -1 +1 @@
0.9.30.0601
0.9.31.0627