]> granicus.if.org Git - apache/commitdiff
buhuh! use the correct target string and don't forget
authorAndre Malo <nd@apache.org>
Sun, 2 Mar 2003 16:26:45 +0000 (16:26 +0000)
committerAndre Malo <nd@apache.org>
Sun, 2 Mar 2003 16:26:45 +0000 (16:26 +0000)
F=x and V=y in column headers ...

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98882 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/generators/mod_autoindex.c

diff --git a/CHANGES b/CHANGES
index ce449f3e8a5dae9c7e8c5c77e77d2ad76485d0d0..12ccd50341a9f763684ac4929dc9e8cd9bd256d4 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@ Changes with Apache 2.1.0-dev
 
   [Remove entries to the current 2.0 section below, when backported]
 
+  *) mod_autoindex no longer forgets output format and enabled version
+     sort in linked column headers.  [AndrĂ© Malo]
+
   *) Extend mod_negotiation to evaluate the environment variables
      no-gzip and gzip-only-text/html the same way as mod_deflate does.
      [AndrĂ© Malo]
index 4733a5b1c06de27b269ad425c0c397168befb410..f9b32d9bb51d4bfbe15a0796e3abb6d36a11af56 100644 (file)
@@ -2050,7 +2050,7 @@ static int index_directory(request_rec *r,
                 else if (qstring[2] == '1') {
                     autoindex_opts |= VERSION_SORT;
                 }
-                strcpy(fval, "&V= ");
+                strcpy(vval, "&V= "); 
                 vval[3] = qstring[2];
                 qstring += qstring[3] ? 4 : 3;
             }