Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
821b2f83
Commit
821b2f83
authored
Nov 09, 2015
by
astaxie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix the type assert
parent
9b725c73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
output.go
context/output.go
+13
-1
No files found.
context/output.go
View file @
821b2f83
...
...
@@ -103,7 +103,19 @@ func (output *BeegoOutput) Cookie(name string, value string, others ...interface
//fix cookie not work in IE
if
len
(
others
)
>
0
{
switch
v
:=
others
[
0
]
.
(
type
)
{
case
int
,
int32
,
int64
:
case
int
:
if
v
>
0
{
fmt
.
Fprintf
(
&
b
,
"; Expires=%s; Max-Age=%d"
,
time
.
Now
()
.
Add
(
time
.
Duration
(
v
)
*
time
.
Second
)
.
UTC
()
.
Format
(
time
.
RFC1123
),
v
)
}
else
if
v
<=
0
{
fmt
.
Fprintf
(
&
b
,
"; Max-Age=0"
)
}
case
int64
:
if
v
>
0
{
fmt
.
Fprintf
(
&
b
,
"; Expires=%s; Max-Age=%d"
,
time
.
Now
()
.
Add
(
time
.
Duration
(
v
)
*
time
.
Second
)
.
UTC
()
.
Format
(
time
.
RFC1123
),
v
)
}
else
if
v
<=
0
{
fmt
.
Fprintf
(
&
b
,
"; Max-Age=0"
)
}
case
int32
:
if
v
>
0
{
fmt
.
Fprintf
(
&
b
,
"; Expires=%s; Max-Age=%d"
,
time
.
Now
()
.
Add
(
time
.
Duration
(
v
)
*
time
.
Second
)
.
UTC
()
.
Format
(
time
.
RFC1123
),
v
)
}
else
if
v
<=
0
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment