Browse Source

Fixed project name on setting module key APP_NAME

tags/v1.21.12.1
Avelino Kim "BKC" Carlbäcker 9 years ago
parent
commit
bea9d55da6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/setting/setting.go

+ 1
- 1
modules/setting/setting.go View File

@@ -393,7 +393,7 @@ please consider changing to GITEA_CUSTOM`)
forcePathSeparator(LogRootPath)

sec := Cfg.Section("server")
AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs: Go Git Service")
AppName = Cfg.Section("").Key("APP_NAME").MustString("Gitea: Git with a cup of tea")
AppURL = sec.Key("ROOT_URL").MustString("http://localhost:3000/")
if AppURL[len(AppURL)-1] != '/' {
AppURL += "/"


Loading…
Cancel
Save