Author: truong.le
Date: 2009-11-15 22:48:24 -0500 (Sun, 15 Nov 2009)
New Revision: 600
Modified:
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/application/UIPortlet.gtmpl
Log:
GTNPORTAL-171: Error display in Portlet Title when click Show Info Bar
Modified:
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/application/UIPortlet.gtmpl
===================================================================
---
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/application/UIPortlet.gtmpl 2009-11-16
03:14:23 UTC (rev 599)
+++
portal/trunk/web/portal/src/main/webapp/groovy/portal/webui/application/UIPortlet.gtmpl 2009-11-16
03:48:24 UTC (rev 600)
@@ -97,7 +97,10 @@
if(portalMode != uiPortalApp.CONTAINER_BLOCK_EDIT_MODE && portalMode !=
uiPortalApp.APP_BLOCK_EDIT_MODE) {
if(uicomponent.getShowInfoBar()) {
String title = uicomponent.getTitle();
- if(title == null || title.trim().length() < 1) title = portletId;
+ if(title == null || title.trim().length() < 1)
+ title = uicomponent.getDisplayName();
+ if(title == null || title.trim().length() < 1)
+ title = portletId;
/*Begin Window Portlet Bar*/
String visibility = "visible";
String appDisplay = "block";
Show replies by date