1
0
mirror of https://github.com/astaxie/beego.git synced 2024-11-22 13:00:54 +00:00

fix build

This commit is contained in:
astaxie 2013-04-27 22:48:20 +08:00
parent cf82cfeea2
commit 7b6a571f87

View File

@ -227,7 +227,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
}
requestPath := r.URL.Path
r.ParseMultipartForm()
r.ParseMultipartForm(MaxMemory)
//user defined Handler
for pattern, c := range p.userHandlers {