1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-08 07:53:31 +00:00

make Maxage work

This commit is contained in:
Lin Luxiang 2014-04-08 18:16:16 +08:00 committed by astaxie
parent 348ff13857
commit 78991c81ab

View File

@ -73,7 +73,8 @@ func (st *CookieSessionStore) SessionRelease(w http.ResponseWriter) {
Value: url.QueryEscape(str),
Path: "/",
HttpOnly: true,
Secure: cookiepder.config.Secure}
Secure: cookiepder.config.Secure,
MaxAge: cookiepder.config.Maxage}
http.SetCookie(w, cookie)
return
}