1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

PR62989: DOCTYPE tags in server-generated HTML.

Submitted By: Andra Farkas <deepbluemistake gmail.com>, Giovanni Bechis <giovanni paclan.it>




git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1873397 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eric Covener
2020-01-31 02:38:05 +00:00
parent d365a29a67
commit fbecdc0f1e
12 changed files with 25 additions and 10 deletions

View File

@@ -1007,7 +1007,7 @@ static int x_handler(request_rec *r)
* Now send our actual output. Since we tagged this as being
* "text/html", we need to embed any HTML.
*/
ap_rputs(DOCTYPE_HTML_3_2, r);
ap_rputs(DOCTYPE_HTML_4_01, r);
ap_rputs("<HTML>\n", r);
ap_rputs(" <HEAD>\n", r);
ap_rputs(" <TITLE>mod_example_hooks Module Content-Handler Output\n", r);