1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-05 05:30:39 +03:00

* Correctly create an empty cell if the description for a file is missing.

PR: 47682
Submitted by: Peter Poeml <poeml suse.de>
Reviewed by: rpluem


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@803704 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ruediger Pluem
2009-08-12 20:42:48 +00:00
parent 648b53af90
commit 02fc923bd0
2 changed files with 6 additions and 3 deletions

View File

@@ -2,6 +2,9 @@
Changes with Apache 2.3.3
*) mod_autoindex: Correctly create an empty cell if the description
for a file is missing. PR 47682 [Peter Poeml <poeml suse.de>]
*) ab: Fix broken error messages after resolver or connect() failures.
[Jeff Trawick]

View File

@@ -1738,9 +1738,9 @@ static void output_directories(struct ent **ar, int n,
desc_width), NULL);
}
}
}
else {
ap_rputs("</td><td>&nbsp;", r);
else {
ap_rputs("</td><td>&nbsp;", r);
}
}
ap_rputs("</td></tr>\n", r);
}