]> git.mxchange.org Git - friendica.git/blobdiff - mod/dfrn_confirm.php
multi-user, do not cache open mbox
[friendica.git] / mod / dfrn_confirm.php
index 1bf1ba9549ebe2c86d5080e6a7de03a7d1867898..58473146d19c37b197f0f69e6cde0617d8ffdc92 100644 (file)
@@ -240,7 +240,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                notice( t('Unexpected response from remote site: ') . EOL . $leading_junk . EOL );
                        }
 
-                       $xml = simplexml_load_string($res);
+                       $xml = parse_xml_string($res);
                        $status = (int) $xml->status;
                        $message = unxmlify($xml->message);   // human readable text of what may have gone wrong.
                        switch($status) {
@@ -434,6 +434,11 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                                $arr['object'] .= '</link></object>' . "\n";
                                $arr['last-child'] = 1;
 
+                               $arr['allow_cid'] = $user[0]['allow_cid'];
+                               $arr['allow_gid'] = $user[0]['allow_gid'];
+                               $arr['deny_cid']  = $user[0]['deny_cid'];
+                               $arr['deny_gid']  = $user[0]['deny_gid'];
+
                                $i = item_store($arr);
                                if($i)
                                proc_run('php',"include/notifier.php","activity","$i");
@@ -646,7 +651,11 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
                        );
        
                        $res = mail($r[0]['email'], sprintf( t("Connection accepted at %s") , $a->config['sitename']),
-                               $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] );
+                               $email_tpl,
+                               'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
+                               . 'Content-type: text/plain; charset=UTF-8' . "\n"
+                               . 'Content-transfer-encoding: 8bit' );
+
                        if(!$res) {
                                // pointless throwing an error here and confusing the person at the other end of the wire.
                        }