# HG changeset patch # User Christophe de Vienne # Date 1398681701 -7200 # Node ID d60dc7e03a45d10436fa9e66859ad14abc8b9e2d # Parent b36bc18f6ef7bd2a32f800053891b15e9c52eb3b [login form] Fix BaseLogForm.form_action() The method implementation was calling super() with the wrong class diff -r b36bc18f6ef7 -r d60dc7e03a45 web/views/basetemplates.py --- a/web/views/basetemplates.py Mon Apr 28 11:20:26 2014 +0200 +++ b/web/views/basetemplates.py Mon Apr 28 12:41:41 2014 +0200 @@ -474,7 +474,7 @@ if target and target != '/': url_args['postlogin_path'] = target return self._cw.build_url('login', __secure__=True, **url_args) - return super(LogForm, self).form_action() + return super(BaseLogForm, self).form_action() class LogForm(BaseLogForm): """Simple login form that send username and password