Re: [web2py] Re: Bug: if theres is two forms normal of request.vars. become LISTS!

2010-12-03 Thread Phyo Arkar
Thats very stupid of me.. But i wonder why it was working before.. (coz i have not updated that page for long). Thanks a lot for spotting this Den!! On 12/4/10, DenesL wrote: > > The closing form tags are wrong (should be ), > so the browser only "sees" one form with duplicated fields, > which

Re: [web2py] Re: Bug: if theres is two forms normal of request.vars. become LISTS!

2010-12-03 Thread Phyo Arkar
Thats very stupid of me.. But i wonder why it was working before.. (coz i have not updated that page for long). On 12/4/10, DenesL wrote: > > The closing form tags are wrong (should be ), > so the browser only "sees" one form with duplicated fields, > which when processed in web2py turn into lis

[web2py] Re: Bug: if theres is two forms normal of request.vars. become LISTS!

2010-12-03 Thread DenesL
The closing form tags are wrong (should be ), so the browser only "sees" one form with duplicated fields, which when processed in web2py turn into lists. On Dec 1, 11:23 pm, Phyo Arkar wrote: >    I use html forms, that code was since 1.7x and today i get > complains from customer (a month afte

Re: [web2py] Re: Bug: if theres is two forms normal of request.vars. become LISTS!

2010-12-03 Thread Phyo Arkar
I do not use form.accepts as it goes to different controller/function.. here is code for /{{=request.application}}/extraction/index : def index(): response.files.append( URL( r = request, c = 'static/css/smoothness', f = 'jquery-ui.css' ) ) response.files.append( URL( r = request,

[web2py] Re: Bug: if theres is two forms normal of request.vars. become LISTS!

2010-12-01 Thread mdipierro
Not sure what the problem is. Can you try replace? form.accepts(request.vars,...) with form.accepts(request.post_vars,...) On Dec 1, 10:23 pm, Phyo Arkar wrote: >    I use html forms, that code was since 1.7x and today i get > complains from customer (a month after updated to 1.88) > > Now i f