diff options
author | Avelino <thiago@avelino.xxx> | 2016-12-02 03:23:37 -0200 |
---|---|---|
committer | Kim "BKC" Carlbäcker <kim.carlbacker@gmail.com> | 2016-12-02 07:52:27 +0100 |
commit | bea9d55da6df19777b00213e7b5303237910e97c (patch) | |
tree | 6d9ec7d3a012591215c6c2ea16b74373a9d65836 /modules/setting | |
parent | d93429af8b21e56d2e623206296709fbb32ba07d (diff) | |
download | gitea-bea9d55da6df19777b00213e7b5303237910e97c.tar.gz gitea-bea9d55da6df19777b00213e7b5303237910e97c.zip |
Fixed project name on setting module key APP_NAME
Diffstat (limited to 'modules/setting')
-rw-r--r-- | modules/setting/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go index 2ee8ce94d7..7e3bfb47ba 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -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 += "/" |