revert it

This commit is contained in:
thinkerou 2018-12-19 23:06:52 +08:00
parent 976263d379
commit 87ae880c8e

View File

@ -419,11 +419,6 @@ func (c *Context) GetPostFormArray(key string) ([]string, bool) {
if values := req.PostForm[key]; len(values) > 0 { if values := req.PostForm[key]; len(values) > 0 {
return values, true return values, true
} }
/*if req.MultipartForm != nil && req.MultipartForm.File != nil {
if values := req.MultipartForm.Value[key]; len(values) > 0 {
return values, true
}
}*/
return []string{}, false return []string{}, false
} }