summaryrefslogtreecommitdiffstats
path: root/WebContent/ParamPrinter.jsp
diff options
context:
space:
mode:
Diffstat (limited to 'WebContent/ParamPrinter.jsp')
-rw-r--r--WebContent/ParamPrinter.jsp6
1 files changed, 5 insertions, 1 deletions
diff --git a/WebContent/ParamPrinter.jsp b/WebContent/ParamPrinter.jsp
index ed0e991..aa3046f 100644
--- a/WebContent/ParamPrinter.jsp
+++ b/WebContent/ParamPrinter.jsp
@@ -19,7 +19,11 @@
<c:forEach items="${param}" var="parameter">
<tr>
<td><c:out value="${parameter.key}"/></td>
- <td><c:out value="${parameter.value}"/></td>
+ <td>
+ <c:forEach items="${paramValues[parameter.key]}" var="value">
+ <c:out value="${value}"/><br>
+ </c:forEach>
+ </td>
</tr>
</c:forEach>
</table>