# HG changeset patch # User Dan Fuhry # Date 1353343056 18000 # Node ID 24f5610ea589c1b9512d24414ad2904bbefb79fa # Parent cfce82063776814dc9beb686d2fa78158d5fff69 Make redirects send 302 Found instead of 307 to suppress "confirm POST resend" dialog in firefox diff -r cfce82063776 -r 24f5610ea589 includes/functions.php --- a/includes/functions.php Mon Nov 19 11:37:02 2012 -0500 +++ b/includes/functions.php Mon Nov 19 11:37:36 2012 -0500 @@ -589,7 +589,7 @@ { header('Location: ' . $url); header('Content-length: 0'); - header('HTTP/1.1 307 Temporary Redirect'); + header('HTTP/1.1 302 Found'); // with 3xx codes HTTP clients expect a response of 0 bytes, so just die here exit();