X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fconversation.php;h=45e5d1caa3832ad98e04544a4ca71f2283afab3d;hb=070e1e73d60295e616314c952199fd4b0b209f2d;hp=db14558871cff7665605ab38f4727c50eb82237f;hpb=16a081871c025692b771bc3d96ac0bb331387aa9;p=friendica.git diff --git a/include/conversation.php b/include/conversation.php index db14558871..45e5d1caa3 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -229,12 +229,12 @@ function localize_item(&$item) $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">"; $obj = XML::parseString($xmlhead.$item['object']); - $links = XML::parseString($xmlhead."".unxmlify($obj->link).""); $Bname = $obj->title; - $Blink = ""; + $Blink = $obj->id; $Bphoto = ""; - foreach ($links->link as $l) { + + foreach ($obj->link as $l) { $atts = $l->attributes(); switch ($atts['rel']) { case "alternate": $Blink = $atts['href']; @@ -491,6 +491,7 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o } } } elseif ($mode === 'notes') { + $items = conversation_add_children($items, false, $order, $uid); $profile_owner = local_user(); if (!$update) { @@ -499,6 +500,7 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o . "; var netargs = '/?f='; var profile_page = " . $a->pager['page'] . "; \r\n"; } } elseif ($mode === 'display') { + $items = conversation_add_children($items, false, $order, $uid); $profile_owner = $a->profile['uid']; if (!$update) { @@ -515,6 +517,15 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o . "\r\n"; } + } elseif ($mode === 'contacts') { + $items = conversation_add_children($items, true, $order, $uid); + $profile_owner = 0; + + if (!$update) { + $live_update_div = '
' . "\r\n" + . "\r\n"; + } } elseif ($mode === 'search') { $live_update_div = '' . "\r\n"; } @@ -542,7 +553,7 @@ function conversation(App $a, array $items, $mode, $update, $preview = false, $o $page_template = get_markup_template("conversation.tpl"); if (!empty($items)) { - if ($mode === 'community') { + if (in_array($mode, ['community', 'contacts'])) { $writable = true; } else { $writable = ($items[0]['uid'] == 0) && in_array($items[0]['network'], [Protocol::OSTATUS, Protocol::DIASPORA, Protocol::DFRN]);