From da188214c304cefaa6fe0a36e1f60932da2f3bfb Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 7 Jan 2013 15:12:16 -0800 Subject: events are still buggered and aren't anywhere close to working, but not buggered quite as much as before. --- include/contact_widgets.php | 36 +----------------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) (limited to 'include/contact_widgets.php') diff --git a/include/contact_widgets.php b/include/contact_widgets.php index e0c9ca0e8..47945e66e 100644 --- a/include/contact_widgets.php +++ b/include/contact_widgets.php @@ -40,41 +40,6 @@ function findpeople_widget() { } -function networks_widget($baseurl,$selected = '') { - - $a = get_app(); - - if(! local_user()) - return ''; - - - $r = q("select distinct(network) from contact where uid = %d and self = 0", - intval(local_user()) - ); - - $nets = array(); - if(count($r)) { - require_once('include/contact_selectors.php'); - foreach($r as $rr) { - if($rr['network']) - $nets[] = array('ref' => $rr['network'], 'name' => network_to_name($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' )); - } - } - - if(count($nets) < 2) - return ''; - - return replace_macros(get_markup_template('nets.tpl'),array( - '$title' => t('Networks'), - '$desc' => '', - '$sel_all' => (($selected == '') ? 'selected' : ''), - '$all' => t('All Networks'), - '$nets' => $nets, - '$base' => $baseurl, - - )); -} - function fileas_widget($baseurl,$selected = '') { $a = get_app(); @@ -150,6 +115,7 @@ function common_friends_visitor_widget($profile_uid) { } } +// FIXME if(! $cid) { if(get_my_url()) { $r = q("select id from contact where nurl = '%s' and uid = %d limit 1", -- cgit v1.2.3