Author: chris.laprun(a)jboss.com
Date: 2008-06-06 13:05:14 -0400 (Fri, 06 Jun 2008)
New Revision: 10937
Modified:
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/command/render/RenderWindowCommand.java
Log:
- Oops: use window.getName() instead of getId()...
Modified:
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/command/render/RenderWindowCommand.java
===================================================================
---
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/command/render/RenderWindowCommand.java 2008-06-06
16:22:38 UTC (rev 10936)
+++
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/model/portal/command/render/RenderWindowCommand.java 2008-06-06
17:05:14 UTC (rev 10937)
@@ -145,7 +145,7 @@
// check that the portlet associated with the window is deployed by delegating to
the navigational state which
// in turn delegates to ControllerPortletControllerContext which knows the windows
which are available
- String windowName = window.getId().toString();
+ String windowName = window.getName();
Window realWindow = pageNavigationalState.getWindow(windowName);
if(realWindow == null)
{
Show replies by date