]> git.mxchange.org Git - friendica.git/blobdiff - mod/network.php
Merge pull request #2151 from annando/1512-misconfigured-friendica
[friendica.git] / mod / network.php
index 3e841d27593b5297e87b1a531390fd5c129cd7d5..8e7a2b8e1ea1174b9bd0069924d5fcd1881be0e8 100644 (file)
@@ -6,6 +6,8 @@ function network_init(&$a) {
        }
 
        $is_a_date_query = false;
+       if(x($_GET['cid']) && intval($_GET['cid']) != 0)
+               $cid = $_GET['cid'];
 
        if($a->argc > 1) {
                for($x = 1; $x < $a->argc; $x ++) {
@@ -146,20 +148,12 @@ function network_init(&$a) {
        }
 
        $a->page['aside'] .= (feature_enabled(local_user(),'groups') ? group_side('network/0','network','standard',$group_id) : '');
-       $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist($a) : '');
+       $a->page['aside'] .= (feature_enabled(local_user(),'forumlist_widget') ? widget_forumlist(local_user(),$cid) : '');
        $a->page['aside'] .= posted_date_widget($a->get_baseurl() . '/network',local_user(),false);
        $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
        $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 `url` FROM `contact` WHERE `id` = %d",
-//                     intval($_GET['cid']));
-//             if ($r) {
-//                     $a->page['aside'] = "";
-//                     profile_load($a, "", 0, get_contact_details_by_url($r[0]["url"]));
-//             }
-//     }
 }
 
 function saved_searches($search) {
@@ -605,6 +599,7 @@ function network_content(&$a, $update = 0) {
 
                        $o = replace_macros(get_markup_template("viewcontact_template.tpl"),array(
                                'contacts' => $entries,
+                               'id' => 'network',
                        )) . $o;
 
                        if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {