]> git.mxchange.org Git - friendica.git/blobdiff - mod/salmon.php
Merge pull request #4328 from tobiasd/20180125-msg
[friendica.git] / mod / salmon.php
index 1cb118355b8c71f45a7ee0ff0311d47024fee2bc..d5b0fe243036b3d0dc41484af647371a61ff17da 100644 (file)
@@ -69,7 +69,7 @@ function salmon_post(App $a) {
        // unpack the  data
 
        // strip whitespace so our data element will return to one big base64 blob
-       $data = str_replace(array(" ","\t","\r","\n"),array("","","",""),$base->data);
+       $data = str_replace([" ","\t","\r","\n"],["","","",""],$base->data);
 
        // stash away some other stuff for later
 
@@ -164,7 +164,7 @@ function salmon_post(App $a) {
        if (! DBM::is_result($r)) {
                logger('mod-salmon: Author unknown to us.');
                if(PConfig::get($importer['uid'],'system','ostatus_autofriend')) {
-                       $result = Contact::new($importer['uid'], $author_link);
+                       $result = Contact::createFromProbe($importer['uid'], $author_link);
                        if($result['success']) {
                                $r = q("SELECT * FROM `contact` WHERE `network` = '%s' AND ( `url` = '%s' OR `alias` = '%s')
                                        AND `uid` = %d LIMIT 1",