From d40d2e8dbcb586f8e2397f120bd74fcd76de8b63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Mas=C3=A1r?= Date: Fri, 18 Oct 2013 16:17:58 +0200 Subject: [PATCH] JSPUI: fix collection strength display on home page --- dspace-jspui/src/main/webapp/home.jsp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dspace-jspui/src/main/webapp/home.jsp b/dspace-jspui/src/main/webapp/home.jsp index 7f98256ebe..ad0b983278 100644 --- a/dspace-jspui/src/main/webapp/home.jsp +++ b/dspace-jspui/src/main/webapp/home.jsp @@ -195,19 +195,20 @@ if (communities != null && communities.length != 0) <% } else { %>
<% } %> -

<%= communities[i].getMetadata("name") %>

-

<%= communities[i].getMetadata("short_description") %>

-
- +

<%= communities[i].getMetadata("name") %> <% if (ConfigurationManager.getBooleanProperty("webui.strengths.show")) { %> - [<%= ic.getCount(communities[i]) %>] + <%= ic.getCount(communities[i]) %> <% } %> +

+

<%= communities[i].getMetadata("short_description") %>

+ + <% } %>