bbef2131 by astaxie

fix #144

1 parent bc060c95
......@@ -543,10 +543,10 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
method = vc.MethodByName("Render")
method.Call(in)
}
method = vc.MethodByName("Finish")
method.Call(in)
}
}
method = vc.MethodByName("Finish")
method.Call(in)
method = vc.MethodByName("Destructor")
method.Call(in)
}
......@@ -607,9 +607,9 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
method = vc.MethodByName("Render")
method.Call(in)
}
method = vc.MethodByName("Finish")
method.Call(in)
}
method = vc.MethodByName("Finish")
method.Call(in)
method = vc.MethodByName("Destructor")
method.Call(in)
// set find
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!