1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 22:53:27 +00:00
This commit is contained in:
astaxie 2017-04-30 23:59:38 +08:00
parent 947980b5eb
commit e76423e6dc

View File

@ -105,7 +105,7 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
switch {
case maxAge > 0:
fmt.Fprintf(&b, "; Expires=%s; Max-Age=%d", time.Now().Add(time.Duration(maxAge)*time.Second).UTC().Format(time.RFC1123), maxAge)
case maxAge <= 0:
case maxAge < 0:
fmt.Fprintf(&b, "; Max-Age=0")
}
}