Author: hfnukal
Date: 2011-11-08 19:26:01 -0500 (Tue, 08 Nov 2011)
New Revision: 8010
Modified:
epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/groovy/webui/component/UIFooterPortlet.gtmpl
Log:
JBEPP-1349 Version number in footer
Modified:
epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/groovy/webui/component/UIFooterPortlet.gtmpl
===================================================================
---
epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/groovy/webui/component/UIFooterPortlet.gtmpl 2011-11-08
21:32:07 UTC (rev 8009)
+++
epp/portal/branches/EPP_5_2_Branch/portlet/web/src/main/webapp/groovy/groovy/webui/component/UIFooterPortlet.gtmpl 2011-11-09
00:26:01 UTC (rev 8010)
@@ -1,6 +1,9 @@
<%
Package p = _ctx.getClass().getPackage();
-String version = p==null?"":"EPP "+p.getImplementationVersion();
+String version = "";
+if(p!=null) {
+ version = "EPP " + p.getImplementationVersion();
+}
%>
<div class="UIFooterPortlet" id="$uicomponent.id">
<div class="LeftFooter">
Show replies by date