[Zope] Access problems

Todd Loomis tloomis@dmso.mil
Mon, 20 Aug 2001 15:17:56 -0400


I've created a list with the code below, however the only person who has 
access this is a manager, however if I delete this my other users have 
access. The roles and permissions shouldn't be a problem as I redone 3 to 4 
times, this code does it can anybody explain:

<select name="folder">
	<option value="" selected>Select from list</option>
	<dtml-with folders>
	<dtml-in expr="objectValues('Folder')">
		<option value="<dtml-var id>"><dtml-var title></option>
	</dtml-in>
	</dtml-with>

Todd