Re: [Zope-dev] Bug in TransparentFolders ???

2001-07-05 Thread Shane Hathaway
Andre Schubert wrote: > after searching the soures if found a way the point of disaster. > in TransparentFolderPatch i changed the line: > if tpids and not self._v_no_transparent and name[:3] != '_p_' : > to: > if tpids and not self._v_no_transparent and name[:3] != '_p_' and > name[-11:] != '_Per

Re: [Zope-dev] Bug in TransparentFolders ???

2001-07-04 Thread Andre Schubert
Hi, after searching the soures if found a way the point of disaster. in TransparentFolderPatch i changed the line: if tpids and not self._v_no_transparent and name[:3] != '_p_' : to: if tpids and not self._v_no_transparent and name[:3] != '_p_' and name[-11:] != '_Permission': which means to me t