]> git.mxchange.org Git - friendica.git/commitdiff
Change contact post link to contact network page
authorHypolite Petovan <mrpetovan@gmail.com>
Tue, 14 Aug 2018 22:43:45 +0000 (00:43 +0200)
committerHypolite Petovan <mrpetovan@gmail.com>
Tue, 14 Aug 2018 22:43:45 +0000 (00:43 +0200)
include/conversation.php
src/Model/Contact.php

index 3ceccf36ae1141eb6eae9fd0796658aa87adabc0..b73a6d61ccd7629c606874bd810cd18a7d7b8d50 100644 (file)
@@ -841,7 +841,7 @@ function item_photo_menu($item) {
        if ($cid && !$item['self']) {
                $poke_link = 'poke/?f=&c=' . $cid;
                $contact_url = 'contacts/' . $cid;
-               $posts_link = 'contacts/' . $cid . '/posts';
+               $posts_link = 'network?cid=' . $cid;
 
                if (in_array($network, [Protocol::DFRN, Protocol::DIASPORA])) {
                        $pm_url = 'message/new/' . $cid;
index b18159d40cf0cf823bba43b082e6d897af214b9c..760a563a41bcaeaf927794c6e6a0d1944c5a6e2e 100644 (file)
@@ -710,7 +710,7 @@ class Contact extends BaseObject
 
                $contact_url = System::baseUrl() . '/contacts/' . $contact['id'];
 
-               $posts_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/posts';
+               $posts_link = System::baseUrl() . '/network?cid=' . $contact['id'];
 
                if (!$contact['self']) {
                        $contact_drop_link = System::baseUrl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';