1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 06:14:12 +00:00

Update beego.go

This commit is contained in:
sol lu 2014-01-10 13:31:08 +08:00
parent 844412c302
commit afadb3f6df

View File

@ -192,6 +192,7 @@ func Run() {
}
if SessionOn {
var err error
sessionConfig := AppConfig.String("sessionConfig")
if sessionConfig == "" {
sessionConfig = `{"cookieName":"` + SessionName + `",` +
@ -203,7 +204,7 @@ func Run() {
`"enableSetCookie":` + strconv.FormatBool(SessionAutoSetCookie) + `,` +
`"cookieLifeTime":` + strconv.Itoa(SessionCookieLifeTime) + `}`
}
GlobalSessions, err := session.NewManager(SessionProvider,
GlobalSessions, err = session.NewManager(SessionProvider,
sessionConfig)
if err != nil {
panic(err)