web: handle multiple account filter patterns correctly

This commit is contained in:
Simon Michael 2010-11-29 16:33:05 +00:00
parent 563004bfa0
commit 355b09e5e3

View File

@ -269,7 +269,7 @@ getHandlerData = do
a <- fromMaybe "" <$> lookupGetParam "a"
p <- fromMaybe "" <$> lookupGetParam "p"
let opts = appOpts app ++ [Period p]
args = appArgs app ++ [a]
args = appArgs app ++ words a
fspec = optsToFilterSpec opts args t
return (a, p, opts, fspec)