PR: 21668
Submitted by: Jesse Tie-Ten-Quee <highos highos.com>
Reviewed by: Jeff Trawick, Thom May
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101844
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.49
+ *) mod_autoindex: Don't omit the <tr> start tag if the SuppressIcon
+ option is set. PR 21668. [Jesse Tie-Ten-Quee <highos highos.com>]
+
*) mod_include no longer allows an ETag header on 304 responses.
PR 19355. [Geoffrey Young <geoff apache.org>, André Malo]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/11/21 23:42:47 $]
+Last modified at [$Date: 2003/11/21 23:51:53 $]
Release:
server/request.c: r1.130
+1: nd
- * mod_autoindex: Don't omit the <tr> start tag if the SuppressIcon
- option is set. PR 21668.
- modules/generators/mod_autoindex.c: r1.123
- +1: nd, trawick, thommay
-
* mod_setenvif: Fix optimizer to treat regexps as such even if they
only contain anchors like \b. PR 24219.
modules/metadata/mod_setenvif.c: r1.44
}
if (autoindex_opts & TABLE_INDEXING) {
+ ap_rputs("<tr>", r);
if (!(autoindex_opts & SUPPRESS_ICON)) {
- ap_rputs("<tr><td valign=\"top\">", r);
+ ap_rputs("<td valign=\"top\">", r);
if (autoindex_opts & ICONS_ARE_LINKS) {
ap_rvputs(r, "<a href=\"", anchor, "\">", NULL);
}