# HG changeset patch # User Sylvain Thénault # Date 1286791392 -7200 # Node ID d88be69179b843c9b60969ac0b8d621c102b09e0 # Parent 71b2a3fe7ba15a169d598b1a636e9d9f458d5c97 CtxComponent don't have wview diff -r 71b2a3fe7ba1 -r d88be69179b8 web/views/basecomponents.py --- a/web/views/basecomponents.py Mon Oct 11 11:02:27 2010 +0200 +++ b/web/views/basecomponents.py Mon Oct 11 12:03:12 2010 +0200 @@ -125,8 +125,9 @@ def call(self): self.w(self._html % (self._cw._('login / password'), self.loginboxid, self._cw._('i18n_login_popup'))) - self.wview('logform', rset=self.cw_rset, id=self.loginboxid, - klass='%s hidden' % self.loginboxid, title=False, showmessage=False) + self.view('logform', rset=self.cw_rset, id=self.loginboxid, + klass='%s hidden' % self.loginboxid, title=False, showmessage=False, + w=self.w) class HTTPLoginComponent(CookieLoginComponent):