From 2e316b5cf2c39660b34430a82bc1308cb7717c1f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 29 Oct 2015 08:10:39 +0100 Subject: [PATCH] Show the profile in the network view when viewing single contacts --- mod/network.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mod/network.php b/mod/network.php index 639d868fa2..66beface08 100644 --- a/mod/network.php +++ b/mod/network.php @@ -150,6 +150,14 @@ function network_init(&$a) { $a->page['aside'] .= saved_searches($search); $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : '')); + if(x($_GET['cid']) && intval($_GET['cid']) != 0) { + $r = q("SELECT * FROM `contact` WHERE `id` = %d", + intval($_GET['cid'])); + if ($r) { + $a->page['aside'] = ""; + profile_load($a, "", 0, $r[0]); + } + } } function saved_searches($search) {