From: Evan Prodromou Date: Mon, 15 Jun 2009 23:55:01 +0000 (-0700) Subject: a little better query handling in redirect code X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8c24a3bc92484d19ed4ba489d2d7b1172f4b355d;p=quix0rs-gnu-social.git a little better query handling in redirect code --- diff --git a/classes/Status_network.php b/classes/Status_network.php index 03e8f45259..17b6887408 100644 --- a/classes/Status_network.php +++ b/classes/Status_network.php @@ -95,18 +95,6 @@ class Status_network extends DB_DataObject $destination = 'http://'.$this->hostname; $destination .= $_SERVER['REQUEST_URI']; - $args = $_GET; - - if (isset($args['p'])) { - unset($args['p']); - } - - $query = http_build_query($args); - - if (strlen($query) > 0) { - $destination .= '?' . $query; - } - $old = 'http'. (($_SERVER['HTTPS'] == 'on') ? 'S' : ''). '://'.