This is an automated email from the ASF dual-hosted git repository. mgrigorov pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/8.5.x by this push: new a943f7e Update reqparams.html a943f7e is described below commit a943f7efc789fe25a77f39678c7fd4160aaa7ab2 Author: javierlete <jgl...@gmail.com> AuthorDate: Wed Jul 8 10:52:16 2020 +0200 Update reqparams.html Added the request.getParameter that were missing. (cherry picked from commit 6c992e2b9ef09d7d7ce282630321084834f6a4ae) --- webapps/examples/servlets/reqparams.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/webapps/examples/servlets/reqparams.html b/webapps/examples/servlets/reqparams.html index 7128e39..02dbddf 100644 --- a/webapps/examples/servlets/reqparams.html +++ b/webapps/examples/servlets/reqparams.html @@ -44,6 +44,10 @@ out.println("<font color="#009900"><body></font>"); out.println("<font color="#009900"><h3>Request Parameters Example</h3></font>"); out.println("<font color="#009900">Parameters in this request:<br></font>"); + + String firstName = request.getParameter("firstname"); + String lastName = request.getParameter("lastname"); + if (firstName != null || lastName != null) { out.println("<font color="#009900">First Name:</font>"); out.println("<font color="#009900"> = </font>" + HTMLFilter.filter(firstName) + "<font color="#009900"><br></font>"); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org