# HG changeset patch # User sylvain.thenault@logilab.fr # Date 1239189452 -7200 # Node ID 870bc725cc9ac94364672b471ccf87a368f4d3ee # Parent aae1516b6426a72600fa586d38bffac7e712b79e password widget should use the same value as main field for the confirm, else if we don't notice that we got a validation error while no password modification has been done diff -r aae1516b6426 -r 870bc725cc9a web/formwidgets.py --- a/web/formwidgets.py Wed Apr 08 13:16:24 2009 +0200 +++ b/web/formwidgets.py Wed Apr 08 13:17:32 2009 +0200 @@ -74,7 +74,7 @@ confirmname = '%s-confirm:%s' % tuple(name.rsplit(':', 1)) inputs = [tags.input(name=name, value=values[0], type=self.type, id=id, **attrs), '
', - tags.input(name=confirmname, type=self.type, **attrs), + tags.input(name=confirmname, value=values[0], type=self.type, **attrs), ' ', tags.span(form.req._('confirm password'), **{'class': 'emphasis'})] return u'\n'.join(inputs)