Commit c066715e authored by Graham Leggett's avatar Graham Leggett
Browse files

*) mod_dav: Fix invalid Location header when a resource is created by passing

   an absolute URI on the request line
+1: jailletc36, jim, minfrin


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1847290 13f79535-47bb-0310-9956-ffa450edef68
parent 43957b2a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
                                                         -*- coding: utf-8 -*-
Changes with Apache 2.4.38

  *) mod_dav: Fix invalid Location header when a resource is created by
     passing an absolute URI on the request line [Jim Jagielski]

  *) mod_session_cookie: avoid duplicate Set-Cookie header in the response.
     [Emmanuel Dreyfus <manu@netbsd.org>, Luca Toscano]

+0 −7
Original line number Diff line number Diff line
@@ -126,13 +126,6 @@ RELEASE SHOWSTOPPERS:
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
  [ start all new proposals below, under PATCHES PROPOSED. ]

  *) mod_dav: Fix invalid Location header when a resource is created by passing an
              absolute URI on the request line
     trunk patch: http://svn.apache.org/r1592655
     2.4.x patch: svn merge -c 1592655 ^/httpd/httpd/trunk .
     +1: jailletc36, jim, minfrin
     jailletc36: a CHANGE entry should maybe be added


PATCHES PROPOSED TO BACKPORT FROM TRUNK:
  [ New proposals should be added at the end of the list ]
+1 −1
Original line number Diff line number Diff line
@@ -643,7 +643,7 @@ static int dav_created(request_rec *r, const char *locn, const char *what,
    const char *body;

    if (locn == NULL) {
        locn = r->unparsed_uri;
        locn = ap_escape_uri(r->pool, r->uri);
    }

    /* did the target resource already exist? */