summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2018-05-28 22:56:54 +0800
committerGitHub <noreply@github.com>2018-05-28 22:56:54 +0800
commit5c95f7c7ce0dd992932f1bd3c3a40240aa11d4d0 (patch)
treeeac2427025b6fe63da1cf29fd51cd782dda0b933 /modules
parentfd274ffcd9bfdaac210278794ca4d87216868b8a (diff)
downloadgitea-5c95f7c7ce0dd992932f1bd3c3a40240aa11d4d0.tar.gz
gitea-5c95f7c7ce0dd992932f1bd3c3a40240aa11d4d0.zip
fix attachment ENABLED (#4064)
* fix attachment ENABLED * change wrong name on app.ini.sample
Diffstat (limited to 'modules')
-rw-r--r--modules/setting/setting.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/setting/setting.go b/modules/setting/setting.go
index adf4bb74fd..b23a68e3ac 100644
--- a/modules/setting/setting.go
+++ b/modules/setting/setting.go
@@ -947,7 +947,7 @@ func NewContext() {
AttachmentAllowedTypes = strings.Replace(sec.Key("ALLOWED_TYPES").MustString("image/jpeg,image/png,application/zip,application/gzip"), "|", ",", -1)
AttachmentMaxSize = sec.Key("MAX_SIZE").MustInt64(4)
AttachmentMaxFiles = sec.Key("MAX_FILES").MustInt(5)
- AttachmentEnabled = sec.Key("ENABLE").MustBool(true)
+ AttachmentEnabled = sec.Key("ENABLED").MustBool(true)
TimeFormatKey := Cfg.Section("time").Key("FORMAT").MustString("RFC1123")
TimeFormat = map[string]string{