[Zope-CMF] MemberDataTool's wrapUser
Dieter Maurer
dieter@handshake.de
Sat, 8 Mar 2003 13:54:07 +0100
Florent Guillaume wrote at 2003-3-7 16:47 +0100:
> There is a bug in MemberDataTool.wrapUser(). It attempts to cache things
> in _v_temps, but cannot clean up after a deletion (there is no way to
> invalidate a _v_ attribute as it may be in another thread).
They should be cleared automatically, if the containing object is
changed (in whatever thread). The easiest way would be:
portal_memberdata._p_changed= 1
Dieter