mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 18:14:26 +00:00
Fixed problem with JSPs generating error with empty policies (action is null.)
git-svn-id: http://scm.dspace.org/svn/repo/trunk@697 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -119,7 +119,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
||||||
<td class="<%= row %>RowEvenCol">
|
<td class="<%= row %>RowEvenCol">
|
||||||
<%= Constants.actionText[rp.getAction()]%>
|
<%= (rp.getAction() == -1 ? "..." : Constants.actionText[rp.getAction()]) %>
|
||||||
</td>
|
</td>
|
||||||
<td class="<%= row %>RowOddCol">
|
<td class="<%= row %>RowOddCol">
|
||||||
...
|
...
|
||||||
|
@@ -114,7 +114,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
||||||
<td class="<%= row %>RowEvenCol">
|
<td class="<%= row %>RowEvenCol">
|
||||||
<%= Constants.actionText[rp.getAction()]%>
|
<%= (rp.getAction() == -1 ? "..." : Constants.actionText[rp.getAction()] )%>
|
||||||
</td>
|
</td>
|
||||||
<td class="<%= row %>RowOddCol">
|
<td class="<%= row %>RowOddCol">
|
||||||
...
|
...
|
||||||
|
@@ -148,7 +148,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
|
||||||
<td class="<%= row %>RowEvenCol">
|
<td class="<%= row %>RowEvenCol">
|
||||||
<%= Constants.actionText[rp.getAction()]%>
|
<%= (rp.getAction == -1 ? "..." : Constants.actionText[rp.getAction()] )%>
|
||||||
</td>
|
</td>
|
||||||
<td class="<%= row %>RowOddCol">
|
<td class="<%= row %>RowOddCol">
|
||||||
...
|
...
|
||||||
|
Reference in New Issue
Block a user