]> git.mxchange.org Git - friendica.git/commitdiff
secure profile failure
authorFriendika <info@friendika.com>
Wed, 30 Mar 2011 11:07:47 +0000 (04:07 -0700)
committerFriendika <info@friendika.com>
Wed, 30 Mar 2011 11:07:47 +0000 (04:07 -0700)
include/items.php
mod/dfrn_poll.php
mod/dfrn_request.php
mod/oexchange.php

index 05165932183b8871bee966462d1f9794185bc326..58fad99272a62dcb496b1cd9e7f3d0cdde01cad8 100644 (file)
@@ -762,7 +762,7 @@ function dfrn_deliver($owner,$contact,$atom, $dissolve = false) {
        if(! $rino_enable)
                $rino = 0;
 
-       $url = $contact['notify'] . '?dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
+       $url = $contact['notify'] . '&dfrn_id=' . $idtosend . '&dfrn_version=' . DFRN_PROTOCOL_VERSION . (($rino) ? '&rino=1' : '');
 
        logger('dfrn_deliver: ' . $url);
 
index bacfe9b94d9465ea6b07e5bd6c984189b8addb24..eb499fbd1ae82c85a7540e65205ec1f6e9917e91 100644 (file)
@@ -63,7 +63,7 @@ function dfrn_poll_init(&$a) {
                
                if(count($r)) {
 
-                       $s = fetch_url($r[0]['poll'] . '?dfrn_id=' . $my_id . '&type=profile-check');
+                       $s = fetch_url($r[0]['poll'] . '&dfrn_id=' . $my_id . '&type=profile-check');
 
                        logger("dfrn_poll: old profile returns " . $s, LOGGER_DATA);
 
@@ -366,7 +366,7 @@ function dfrn_poll_content(&$a) {
                        // URL reply
 
                        $s = fetch_url($r[0]['poll'] 
-                               . '?dfrn_id=' . $encrypted_id 
+                               . '&dfrn_id=' . $encrypted_id 
                                . '&type=profile-check'
                                . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
                                . '&challenge=' . $challenge
index 3cd8473cf314120f12f421dc2d874d0983fc2cd1..f1af1ce4cb285e06c44d648f759f20b13e4f6368 100644 (file)
@@ -172,7 +172,7 @@ function dfrn_request_post(&$a) {
                                        $dfrn_request = $contact_record['request'];
 
                                if(strlen($dfrn_request) && strlen($confirm_key))
-                                       $s = fetch_url($dfrn_request . '?confirm_key=' . $confirm_key);
+                                       $s = fetch_url($dfrn_request . '&confirm_key=' . $confirm_key);
                                
                                // (ignore reply, nothing we can do it failed)
 
index 8dee1cb996d40af9555ed65578160a7356c5a825..f97356559ed811648dc228e97d81f7ec4bd56e60 100644 (file)
@@ -30,7 +30,7 @@ function oexchange_content(&$a) {
 
        $url = (((x($_GET,'url')) && strlen($_GET['url'])) ? notags(trim($_GET['url'])) : '');
 
-       $s = fetch_url($a->get_baseurl() . '/parse_url?url=' . $url);
+       $s = fetch_url($a->get_baseurl() . '/parse_url&url=' . $url);
 
        if(! strlen($s))
                return;