Author: mposolda
Date: 2012-03-07 05:38:07 -0500 (Wed, 07 Mar 2012)
New Revision: 8545
Modified:
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarDashboardPortlet.gtmpl
Log:
Bug 800175 - TemplateRuntimeException in log when go to Dashboard
Modified:
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarDashboardPortlet.gtmpl
===================================================================
---
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarDashboardPortlet.gtmpl 2012-03-07
04:47:08 UTC (rev 8544)
+++
epp/portal/branches/EPP_5_2_Branch/portlet/exoadmin/src/main/webapp/groovy/admintoolbar/webui/component/UIUserToolBarDashboardPortlet.gtmpl 2012-03-07
10:38:07 UTC (rev 8545)
@@ -51,7 +51,7 @@
resolvedLabel = _ctx.appRes("UIUserToolBarDashboard.page." +
node.getLabel());
}
- boolean toolong = (node.getResolvedLabel.length() > 60);
+ boolean toolong = (node.getResolvedLabel().length() > 60);
String label = ( toolong ? EntityEncoder.encode(node.getResolvedLabel().substring(0,
57) + "...") : resolvedLabel);
String title = "";
if(toolong) title = "title='$resolvedLabel'";
Show replies by date