mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 12:00:55 +00:00
XSRFFormHtml() should also generate XSRF token.
This commit is contained in:
parent
912abe3272
commit
5d18a7466c
@ -647,8 +647,8 @@ func (c *Controller) CheckXSRFCookie() bool {
|
|||||||
|
|
||||||
// XSRFFormHTML writes an input field contains xsrf token value.
|
// XSRFFormHTML writes an input field contains xsrf token value.
|
||||||
func (c *Controller) XSRFFormHTML() string {
|
func (c *Controller) XSRFFormHTML() string {
|
||||||
return "<input type=\"hidden\" name=\"_xsrf\" value=\"" +
|
return `<input type="hidden" name="_xsrf" value="` +
|
||||||
c._xsrfToken + "\"/>"
|
c.XSRFToken() + `" />`
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetControllerAndAction gets the executing controller name and action name.
|
// GetControllerAndAction gets the executing controller name and action name.
|
||||||
|
Loading…
Reference in New Issue
Block a user