1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-04 09:50:18 +00:00

fix typo for templateLeft

This commit is contained in:
astaxie
2013-08-19 13:02:18 +08:00
parent f2222ba3c6
commit 0b74db64eb
3 changed files with 7 additions and 7 deletions

View File

@ -48,8 +48,8 @@ var (
EnableXSRF bool
XSRFExpire int
CopyRequestBody bool //When in raw application, You want to the reqeustbody
TemplatLeft string
TemplatRight string
TemplateLeft string
TemplateRight string
)
func init() {
@ -80,8 +80,8 @@ func init() {
ErrorsShow = true
XSRFKEY = "beegoxsrf"
XSRFExpire = 60
TemplatLeft = "{{"
TemplatRight = "}}"
TemplateLeft = "{{"
TemplateRight = "}}"
ParseConfig()
runtime.GOMAXPROCS(runtime.NumCPU())
}