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())
}

View File

@ -199,10 +199,10 @@ func ParseConfig() (err error) {
XSRFExpire = expire
}
if tplleft := AppConfig.String("templateleft"); tplleft != "" {
TemplatLeft = tplleft
TemplateLeft = tplleft
}
if tplright := AppConfig.String("templateright"); tplright != "" {
TemplatRight = tplright
TemplateRight = tplright
}
}
return nil

View File

@ -112,7 +112,7 @@ func BuildTemplate(dir string) error {
return err
}
for k, v := range self.files {
BeeTemplates[k] = template.Must(template.New("beegoTemplate"+k).Funcs(beegoTplFuncMap).ParseFiles(v...)).Delims(TemplatLeft, TemplatRight)
BeeTemplates[k] = template.Must(template.New("beegoTemplate"+k).Funcs(beegoTplFuncMap).ParseFiles(v...)).Delims(TemplateLeft, TemplateRight)
}
return nil
}