Changeset 2097

Show
Ignore:
Timestamp:
02/27/2008 11:10:33 AM (8 months ago)
Author:
stbuehler
Message:

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

Location:
branches/lighttpd-1.4.x
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/NEWS

    r2096 r2097  
    4040  * check for symlinks after successful pathinfo matching (#1574) 
    4141  * fixed mod-proxy.t to run with a builddir outside of the src dir 
     42  * do not suppress content on "307 Temporary Redirect" (#1412) 
    4243 
    4344- 1.4.18 - 2007-09-09 
  • branches/lighttpd-1.4.x/src/connections.c

    r2086 r2097  
    502502        case 302: 
    503503        case 303: 
     504        case 307: 
    504505                break; 
    505506