X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fostatus.php;h=b798a605f91eb9a609dee34335949eafaff5847b;hb=57cadf5b8f5d5c45f1931607c22145647ca52f36;hp=d6e2e1773550e4d4c33059972d75f9fd440bc7d5;hpb=fd965b046aa12bad60330c4c5655dd21a325f998;p=friendica.git diff --git a/include/ostatus.php b/include/ostatus.php index d6e2e17735..b798a605f9 100644 --- a/include/ostatus.php +++ b/include/ostatus.php @@ -149,12 +149,11 @@ class ostatus { if ($cid) { // Update it with the current values q("UPDATE `contact` SET `url` = '%s', `name` = '%s', `nick` = '%s', `alias` = '%s', - `about` = '%s', `location` = '%s', `notify` = '%s', `poll` = '%s', + `about` = '%s', `location` = '%s', `success_update` = '%s', `last-update` = '%s' WHERE `id` = %d", dbesc($author["author-link"]), dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["alias"]), dbesc($contact["about"]), dbesc($contact["location"]), - dbesc($contact["notify"]), dbesc($contact["poll"]), dbesc(datetime_convert()), dbesc(datetime_convert()), intval($cid)); // Update the avatar @@ -1713,7 +1712,8 @@ class ostatus { $as_object = $doc->createElement("activity:object"); - $parent = q("SELECT * FROM `item` WHERE `id` = %d", intval($item["parent"])); + $parent = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d", + dbesc($item["thr-parent"]), intval($item["uid"])); $parent_item = (($item['thr-parent']) ? $item['thr-parent'] : $item['parent-uri']); xml::add_element($doc, $as_object, "activity:object-type", self::construct_objecttype($parent[0]));