4 Oct
2003
4 Oct
'03
2:46 p.m.
Hi all I intend to do development on 2.7.0-2b for trying out. There was just one problem I faced with upgrade. I had to rewrite this portion to make it work ------------------------ <span tal:condition="python:request.form.has_key('submit'); isAnon"> <font color="red">Incorrect login or password</font> </span> ------------------------ to ------------------------ <span tal:condition="python:request.form.has_key('submit')"> <span tal:condition="python: isAnon"> <font color="red">Incorrect login or password</font> </span> </span> ------------------------ !!!!!!! No idea why. It just worked this way. Will research later. Chetan