From 0c4a3330dd44357e2d2bb766ea0d888c883b33b6 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 3 Aug 2020 19:47:46 +0000 Subject: [PATCH] Use the public contact --- src/Module/Contact.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module/Contact.php b/src/Module/Contact.php index b8c8827b24..7ddd5c9f4d 100644 --- a/src/Module/Contact.php +++ b/src/Module/Contact.php @@ -876,7 +876,7 @@ class Contact extends BaseModule $tabs = [ [ 'label' => DI::l10n()->t('Status'), - 'url' => "contact/" . $cid . "/conversations", + 'url' => "contact/" . $pcid . "/conversations", 'sel' => (($active_tab == 1) ? 'active' : ''), 'title' => DI::l10n()->t('Conversations started by this contact'), 'id' => 'status-tab', @@ -884,7 +884,7 @@ class Contact extends BaseModule ], [ 'label' => DI::l10n()->t('Posts and Comments'), - 'url' => "contact/" . $cid . "/posts", + 'url' => "contact/" . $pcid . "/posts", 'sel' => (($active_tab == 2) ? 'active' : ''), 'title' => DI::l10n()->t('Status Messages and Posts'), 'id' => 'posts-tab',