diff options
Diffstat (limited to 'include')
-rwxr-xr-x | include/diaspora.php | 2 | ||||
-rwxr-xr-x | include/items.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index fe0ecad17..8a3eaf873 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -1928,7 +1928,7 @@ function diaspora_like($importer,$xml,$msg) { $arr['item_private'] = $parent_item['item_private']; $arr['verb'] = $activity; - $arr['object-type'] = $objtype; + $arr['obj_type'] = $objtype; $arr['object'] = $object; if(! $parent_author_signature) { diff --git a/include/items.php b/include/items.php index 21f3ddc2b..166303cac 100755 --- a/include/items.php +++ b/include/items.php @@ -3360,7 +3360,7 @@ function consume_feed($xml,$importer,&$contact,$pass = 0) { $datarray['author_xchan'] = ''; if($author['author_link'] != $contact['xchan_url']) { - $x = import_author_unkown(array('name' => $author['author_name'],'url' => $author['author_link'],'photo' => array('src' => $author['author_photo']))); + $x = import_author_unknown(array('name' => $author['author_name'],'url' => $author['author_link'],'photo' => array('src' => $author['author_photo']))); if($x) $datarray['author_xchan'] = $x; |