diff options
Diffstat (limited to 'mod/connections.php')
-rw-r--r-- | mod/connections.php | 74 |
1 files changed, 1 insertions, 73 deletions
diff --git a/mod/connections.php b/mod/connections.php index e365fe35f..9509950a0 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -138,80 +138,8 @@ function connections_content(&$a) { return; } - $xchan = null; - if(argc() == 3) { - $cmd = argv(2); - - if(argv(1) === 'profile') { - $xchan_hash = argv(2); - - if($xchan_hash) { - $r = q("select * from xchan where xchan_hash = '%s' limit 1", - dbesc($xchan_hash) - ); - if($r) { - $xchan = $r[0]; - } - } - } - elseif(intval(argv(1)) && argv(2) === 'profile') - $r = q("SELECT abook.*, xchan.* - FROM abook left join xchan on abook_xchan = xchan_hash - WHERE abook_channel = %d and abook_id = %d LIMIT 1", - intval(local_user()), - intval(argv(1)) - ); - if($r) - $xchan = $r[0]; - - if($xchan) { - -$o .= <<< EOT -<script language="JavaScript"> -<!-- -function resize_iframe() -{ - if(typeof(window.innerHeight) != 'undefined') { - var height=window.innerHeight;//Firefox - } - else { - if (typeof(document.body.clientHeight) != 'undefined') - { - var height=document.body.clientHeight;//IE - } - } - - //resize the iframe according to the size of the - //window (all these should be on the same line) - document.getElementById("glu").style.height=parseInt(height-document.getElementById("glu").offsetTop-8)+"px"; -} - -// this will resize the iframe every -// time you change the size of the window. -window.onresize=resize_iframe; - -//Instead of using this you can use: -// <BODY onresize="resize_iframe()"> - - -//--> -</script> - - -<iframe id="glu" width="100%" src="{$xchan['xchan_url']}" onload="resize_iframe()"> -</iframe> - -EOT; - - - // $o .= '<div id="profile-frame-wrapper" style="width: 100%; height: 100%;"><iframe id="profile-frame" src="' . $r[0]['xchan_url'] . '" style="width: 100%; height: 100%;"></iframe></div>'; - return $o; - - } - - $contact_id = intval(argv(1)); if(! $contact_id) return; @@ -305,7 +233,7 @@ EOT; array( 'label' => t('View Profile'), - 'url' => $a->get_baseurl(true) . '/connections/' . $contact['abook_id'] . '/profile', + 'url' => $a->get_baseurl(true) . '/chanview/?f=&cid=' . $contact['abook_id'], 'sel' => '', 'title' => sprintf( t('View %s\'s profile'), $contact['xchan_name']), ), |