Made resistant to resourcepolicies that were mostly null (no action ID set).

git-svn-id: http://scm.dspace.org/svn/repo/trunk@698 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
David Stuve
2003-07-16 17:01:59 +00:00
parent fe15687198
commit 4739c803a4
3 changed files with 5 additions and 5 deletions

View File

@@ -119,7 +119,7 @@
<tr>
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
<td class="<%= row %>RowEvenCol">
<%= (rp.getAction() == -1 ? "..." : Constants.actionText[rp.getAction()]) %>
<%= rp.getActionText() %>
</td>
<td class="<%= row %>RowOddCol">
...

View File

@@ -114,7 +114,7 @@
<tr>
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
<td class="<%= row %>RowEvenCol">
<%= (rp.getAction() == -1 ? "..." : Constants.actionText[rp.getAction()] )%>
<%= rp.getActionText() %>
</td>
<td class="<%= row %>RowOddCol">
...

View File

@@ -148,7 +148,7 @@
<tr>
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
<td class="<%= row %>RowEvenCol">
<%= (rp.getAction == -1 ? "..." : Constants.actionText[rp.getAction()] )%>
<%= rp.getActionText() %>
</td>
<td class="<%= row %>RowOddCol">
...
@@ -226,7 +226,7 @@
<tr>
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
<td class="<%= row %>RowEvenCol">
<%= Constants.actionText[rp.getAction()]%>
<%= rp.getActionText() %>
</td>
<td class="<%= row %>RowOddCol">
...
@@ -305,7 +305,7 @@
<tr>
<td class="<%= row %>RowOddCol"><%= rp.getID() %></td>
<td class="<%= row %>RowEvenCol">
<%= Constants.actionText[rp.getAction()]%>
<%= rp.getActionText() %>
</td>
<td class="<%= row %>RowOddCol">
...