Commit d719ff9d authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Minor quibble, <li> can and should be a balanced tag


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89754 13f79535-47bb-0310-9956-ffa450edef68
parent 9f52595f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1453,8 +1453,8 @@ static void output_directories(struct ent **ar, int n,
	    }
	}
	else {
	    ap_rvputs(r, "<li /><a href=\"", anchor, "\"> ", t2,
		      "</a>", NULL);
	    ap_rvputs(r, "<li><a href=\"", anchor, "\"> ", t2,
		         "</a></li>", NULL);
	}
	ap_rputc('\n', r);
    }
+2 −2
Original line number Diff line number Diff line
@@ -2261,7 +2261,7 @@ static char *make_variant_list(request_rec *r, negotiation_state *neg)
         * Note that if you change the number of substrings pushed, you also
         * need to change the calculation of max_vlist_array above.
         */
        *((const char **) apr_array_push(arr)) = "<li /><a href=\"";
        *((const char **) apr_array_push(arr)) = "<li><a href=\"";
        *((const char **) apr_array_push(arr)) = filename;
        *((const char **) apr_array_push(arr)) = "\">";
        *((const char **) apr_array_push(arr)) = filename;
@@ -2285,7 +2285,7 @@ static char *make_variant_list(request_rec *r, negotiation_state *neg)
            *((const char **) apr_array_push(arr)) = ", encoding ";
            *((const char **) apr_array_push(arr)) = variant->content_encoding;
        }
        *((const char **) apr_array_push(arr)) = "\n";
        *((const char **) apr_array_push(arr)) = "</li>\n";
    }
    *((const char **) apr_array_push(arr)) = "</ul>\n";