mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 11:00:55 +00:00
fix #252
This commit is contained in:
parent
5d54acba30
commit
0ddde6fa9f
@ -133,12 +133,12 @@ func (manager *Manager) SessionStart(w http.ResponseWriter, r *http.Request) (se
|
||||
r.AddCookie(cookie)
|
||||
} else {
|
||||
//cookie.Expires = time.Now().Add(time.Duration(manager.maxlifetime) * time.Second)
|
||||
cookie.HttpOnly = true
|
||||
cookie.Path = "/"
|
||||
if manager.maxage >= 0 {
|
||||
cookie.MaxAge = manager.maxage
|
||||
http.SetCookie(w, cookie)
|
||||
}
|
||||
//cookie.HttpOnly = true
|
||||
//cookie.Path = "/"
|
||||
//if manager.maxage >= 0 {
|
||||
// cookie.MaxAge = manager.maxage
|
||||
// http.SetCookie(w, cookie)
|
||||
//}
|
||||
sid, _ := url.QueryUnescape(cookie.Value)
|
||||
session, _ = manager.provider.SessionRead(sid)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user