<meta http-equiv="content-type" content="text/html; charset=utf-8"><span class="Apple-style-span" style="font-family: arial, sans-serif; font-size: 6.25px; border-collapse: collapse; color: rgb(51, 51, 51); "><div>setUltDest&#39; which used in redirectLogin(which is called from requireAuth) set session reqGetParams, but not postParams.</div>
<div>This means that , if there are a code as below, posted parameters are lost, aren&#39;t these?</div><div><br></div><div>postFooR :: Handler RepHtml</div><div>postFooR = do</div><div>   (uid,_) &lt;- requireAuth</div><div>
   (x, y) &lt;- uncurry (liftM2 (,)) (lookupPostParam &quot;x&quot;, lookupPostParam &quot;y&quot;)</div><div>   ....</div><div>   defaultLayout $ do</div><div>      ....</div><div>      ....</div><div><br></div></span>