1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-20 22:51:50 +00:00

Merge pull request #935 from mnhkahn/master

beego1.4.2,beego.AppConfig.Strings与老版本代码不兼容问题
This commit is contained in:
astaxie 2014-11-24 21:47:12 +08:00
commit 802aa16136

View File

@ -110,7 +110,7 @@ func (b *beegoAppConfig) String(key string) string {
func (b *beegoAppConfig) Strings(key string) []string {
v := b.innerConfig.Strings(RunMode + "::" + key)
if len(v) == 0 {
if v[0] == "" {
return b.innerConfig.Strings(key)
}
return v