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:
David Stuve
2003-07-16 14:12:31 +00:00
parent bc03027d4b
commit fe15687198
3 changed files with 3 additions and 3 deletions

View File

@@ -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">
... ...

View File

@@ -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">
... ...

View File

@@ -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">
... ...