Fix #1412: do not suppress content for "307 Temporary Redirect"

git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2097 152afb58-edef-0310-8abb-c4023f1b3aa9
svn/tags/lighttpd-1.4.19
Stefan Bühler 15 years ago
parent 041350b40d
commit f570913e3c

@ -39,6 +39,7 @@ NEWS
* fixed RoundRobin in mod_proxy (#516)
* check for symlinks after successful pathinfo matching (#1574)
* fixed mod-proxy.t to run with a builddir outside of the src dir
* do not suppress content on "307 Temporary Redirect" (#1412)
- 1.4.18 - 2007-09-09

@ -501,6 +501,7 @@ static int connection_handle_write_prepare(server *srv, connection *con) {
case 301:
case 302:
case 303:
case 307:
break;
case 206: /* write_queue is already prepared */

Loading…
Cancel
Save