1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 18:14:12 +00:00

Merge pull request #1210 from oiooj/develop

fix multiple filters execute issue
This commit is contained in:
astaxie 2015-06-14 01:08:51 +08:00
commit b54589fa9d

View File

@ -611,9 +611,6 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
if p.enableFilter {
if l, ok := p.filters[pos]; ok {
for _, filterR := range l {
if filterR.returnOnOutput && w.started {
return true
}
if ok, params := filterR.ValidRouter(urlPath); ok {
for k, v := range params {
context.Input.Params[k] = v