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

rollback: set httponly default is false.

This commit is contained in:
slene 2014-03-17 12:27:04 +08:00 committed by asta.xie
parent 439b1afb85
commit d79c297880

View File

@ -135,12 +135,12 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
}
}
// default true
httponly := true
// default false. for session cookie default true
httponly := false
if len(others) > 4 {
if v, ok := others[4].(bool); ok && !v || others[4] == nil {
// HttpOnly = false
httponly = false
if v, ok := others[4].(bool); ok && v {
// HttpOnly = true
httponly = true
}
}