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

make Maxage work

This commit is contained in:
Lin Luxiang 2014-04-08 18:16:16 +08:00
parent 82ca85dc65
commit 1bb876f2df

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
}