mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
JSPUI: show Recent Submission header only iff there are recent submissions
This commit is contained in:
@@ -364,7 +364,7 @@
|
||||
<% } %>
|
||||
|
||||
<%
|
||||
if (rs != null)
|
||||
if (rs != null && rs.count() > 0)
|
||||
{
|
||||
%>
|
||||
<h3><fmt:message key="jsp.collection-home.recentsub"/></h3>
|
||||
|
@@ -104,7 +104,7 @@
|
||||
<p class="copyrightText"><%= copyright %></p>
|
||||
<div class="row">
|
||||
<%
|
||||
if (rs != null)
|
||||
if (rs != null && rs.count() > 0)
|
||||
{ %>
|
||||
<div class="col-md-8">
|
||||
<div class="panel panel-primary">
|
||||
|
Reference in New Issue
Block a user