Copyright © 2001,2002 zopeLABS and community
Category: PageTemplates
<span tal:define="results python:here.portal_membership.searchForMember(request); global count python:0;"> <span tal:repeat="user results"> <span tal:define="global count python: count + 1; " tal:content="python:user.email"/>, </span> <span tal:content="count">Total number of members</span> </span>
i've just ried it, and get 0 all the time
put globa in front of count. scope problem here.
I think you must read "searchForMembers" instead of "searchForMember".