You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cd...@apache.org on 2007/07/04 15:48:40 UTC

svn commit: r553208 - /portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java

Author: cdoremus
Date: Wed Jul  4 06:48:39 2007
New Revision: 553208

URL: http://svn.apache.org/viewvc?view=rev&rev=553208
Log:
Applied PLUTO-388 patch. Thank you Marc Veary!

Modified:
    portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java

Modified: portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java?view=diff&rev=553208&r1=553207&r2=553208
==============================================================================
--- portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java (original)
+++ portals/pluto/trunk/pluto-container/src/main/java/org/apache/pluto/internal/impl/PortletRequestImpl.java Wed Jul  4 06:48:39 2007
@@ -439,7 +439,10 @@
                 .getPortletApplicationDescriptor(internalPortletWindow.getContextPath());
 
             Map allMap = container.getOptionalContainerServices()
-                .getUserInfoService().getUserInfo(this);
+            	//PLUTO-388 fix:
+            	//The PortletWindow is currently ignored in the implementing class
+            	// See: org.apache.pluto.core.DefaultUserInfoService
+            	.getUserInfoService().getUserInfo( this, this.internalPortletWindow );
 
             Iterator i = dd.getUserAttributes().iterator();
             while(i.hasNext()) {