[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser - FolderContents.py:1.4

Jim Fulton jim@zope.com
Wed, 2 Oct 2002 14:51:47 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv3553

Modified Files:
	FolderContents.py 
Log Message:
Changed to return the contents page and to not pass REQUEST to the
contents method.


=== Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/FolderContents.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/FolderContents.py:1.3	Tue Oct  1 08:49:07 2002
+++ Zope3/lib/python/Zope/App/OFS/Content/Folder/Views/Browser/FolderContents.py	Wed Oct  2 14:51:46 2002
@@ -34,6 +34,6 @@
                   'This folder already contains a service manager')
         self.context.setServiceManager(sm)
         if REQUEST is not None:
-            return self.index(REQUEST)
+            return self.contents()
 
     contents = ViewPageTemplateFile('contents.pt')