1
0
mirror of https://github.com/astaxie/beego.git synced 2024-09-28 21:01:49 +00:00

Merge pull request #1211 from astaxie/revert-1210-develop

Revert "fix multiple filters execute issue"
This commit is contained in:
astaxie 2015-06-14 01:13:42 +08:00
commit 73770fbe22

View File

@ -611,6 +611,9 @@ 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