Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
beecc507
authored
2013-09-22 14:35:01 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix #209
1 parent
797bd982
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
3 deletions
controller.go
controller.go
View file @
beecc50
...
...
@@ -335,9 +335,7 @@ func (c *Controller) CheckXsrfCookie() bool {
}
if
token
==
""
{
c
.
Ctx
.
Abort
(
403
,
"'_xsrf' argument missing from POST"
)
}
if
c
.
_xsrf_token
!=
token
{
}
else
if
c
.
_xsrf_token
!=
token
{
c
.
Ctx
.
Abort
(
403
,
"XSRF cookie does not match POST argument"
)
}
return
true
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment