From dfce1044eb8c56a55ace45d72c1653494defbdca Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Thu, 29 Nov 2007 21:48:18 +0000 Subject: [PATCH] * Detabify and make spacing in HTML code the same as before r593816. This avoids that the autoindex test (t/modules/autoindex) fails. Adjusting the autoindex test would cause it to fail with older versions and would make it harder to recognize regressions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@599589 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_autoindex.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 306208ddeb..3e8153c153 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -162,14 +162,14 @@ static void emit_preamble(request_rec *r, int xhtml, const char *title) if (xhtml) { ap_rvputs(r, DOCTYPE_XHTML_1_0T, - "\n" - "\n Index of ", title, - "\n", NULL); + "\n" + " \n Index of ", title, + "\n", NULL); } else { ap_rvputs(r, DOCTYPE_HTML_3_2, - "\n \n" - "Index of ", title, - "\n", NULL); + "\n \n" + " Index of ", title, + "\n", NULL); } if (d->style_sheet != NULL) { -- 2.40.0