Skip to content

Commit a46352b

Browse files
author
Martin Kraemer
committed
Fix long-standing typo (as of 1.17 when mod_info was ported to apache-2.0):
The containers would be printed as <Name ...> </,Name> instead of the proper termination </Name> (or was it intended?) PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94995 13f79535-47bb-0310-9956-ffa450edef68
1 parent 730fe95 commit a46352b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/generators/mod_info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ static void mod_info_html_cmd_string(request_rec *r, const char *string,
139139
while (*s) {
140140
if (*s == '<') {
141141
if (close) {
142-
ap_rputs("&lt;/,", r);
142+
ap_rputs("&lt;/", r);
143143
} else {
144144
ap_rputs("&lt;", r);
145145
}

0 commit comments

Comments
 (0)