diff --git a/controller.go b/controller.go index 2ffc728d9..a02fced75 100644 --- a/controller.go +++ b/controller.go @@ -48,7 +48,7 @@ func NewController(req *Request, resp *Response) *Controller { func (c *Controller) FlashParams() { for key, vals := range c.Params.Values { - c.Flash.Out[key] = vals[0] + c.Flash.Out[key] = strings.Join(vals, ",") } }