>It appears this issue has something to do with properties on >users not being found, I can do a search in the ZMI acl_users >not a problem, but something in the membership data I think is >breaking stuff when calling via plone tools etc, Thank you, Dave. With your suggestion and a little script I have found the corrupted (?) user (well, I have only 30 users): Deleted him in zmi, i can search the others in Plone users overview. This is the script:
memberIdList = context.portal_membership.listMemberIds() corrupted=[] for memberId in memberIdList: try: u=context.portal_membership.getMemberById(memberId) except: corrupted.append(memberId) return str(corrupted) Well, it has worked for me, but I have no skill for saying it is correct! Michele _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup
