On Dec 24, 2010, at 8:04 AM, Arun K.Rajeevan wrote:
> After a bit of trail and error through session.flash
>
> I changed following
>
> indx = dict(indx = search_form.vars.indx)
> redirect(URL(r=request, f='search', args=[lang, word], vars=indx))
>
> to
>
> redirect(URL(r=request, f='search', args=[lang, word],
> vars={'indx':search_form.vars.indx}))
>
> seems working now. (On Linux, previously was on windows)
> But what was wrong with first approach!!!
As Massimo says, they look identical. Could you try switching it back and see
what happens? I'm guessing that it was some other change, that fixed the
problem, perhaps involving JavaScript. (Unless the switch from Windows to Linux
is relevant; that would be interesting.)