]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add Connection: close when sending redirect
authorAntonin Kral <a.kral@bobek.cz>
Thu, 8 Sep 2011 09:45:34 +0000 (11:45 +0200)
committerAntonin Kral <a.kral@bobek.cz>
Thu, 8 Sep 2011 09:45:34 +0000 (11:45 +0200)
lib/util.php

index 629d8326fd2e0669c629587e7b3931d20ce0a4bd..16844b7e1a86aecf32c26231aeb1ae46613307eb 100644 (file)
@@ -851,7 +851,7 @@ function common_replace_urls_callback($text, $callback, $arg = null) {
  * @param callable $callback
  * @param mixed $arg optional argument to pass on as second param to callback
  * @return string
- * 
+ *
  * @access private
  */
 function callback_helper($matches, $callback, $arg=null) {
@@ -1425,6 +1425,7 @@ function common_redirect($url, $code=307)
 
     header('HTTP/1.1 '.$code.' '.$status[$code]);
     header("Location: $url");
+    header("Connection: close");
 
     $xo = new XMLOutputter();
     $xo->startXML('a',