diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-02 10:34:24 +0100 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-11-02 10:34:24 +0100 |
| commit | 886ea8362d80e8855da839a95f9539a2b199f6fe (patch) | |
| tree | 86a5e50ad3cdd89bb37e975157966b49fe603e7d /WebContent/ParamPrinter.jsp | |
| parent | 0e5f96b17340d53e0f2f1eb0384ca82bb0333edb (diff) | |
| download | FIT-886ea8362d80e8855da839a95f9539a2b199f6fe.tar.gz FIT-886ea8362d80e8855da839a95f9539a2b199f6fe.zip | |
Print all values for one parameter
Diffstat (limited to 'WebContent/ParamPrinter.jsp')
| -rw-r--r-- | WebContent/ParamPrinter.jsp | 6 |
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> |
