1
0
Fork 0
forked from forgejo/forgejo

Remove APP_LOGO setting

This commit is contained in:
Mathieu Gagnon 2014-09-13 03:52:51 -04:00
parent a2cac952a4
commit 3549fb0ea8
7 changed files with 3 additions and 8 deletions

View file

@ -32,7 +32,6 @@ var (
// App settings.
AppVer string
AppName string
AppLogo string
AppUrl string
// Server settings.
@ -155,7 +154,6 @@ func NewConfigContext() {
}
AppName = Cfg.MustValue("", "APP_NAME", "Gogs: Go Git Service")
AppLogo = Cfg.MustValue("", "APP_LOGO", "img/favicon.png")
AppUrl = Cfg.MustValue("server", "ROOT_URL", "http://localhost:3000/")
if AppUrl[len(AppUrl)-1] != '/' {
AppUrl += "/"