diff --git a/mod/abook.php b/mod/abook.php index ee402d394..7aa4e9e05 100644 --- a/mod/abook.php +++ b/mod/abook.php @@ -153,6 +153,60 @@ function abook_content(&$a) { if(argc() == 3) { + + $cmd = argv(1); + if($cmd === 'profile') { + $xchan_hash = argv(2); + + if($xchan_hash) { + $r = q("select * from xchan where xchan_hash = '%s' limit 1", + dbesc($xchan_hash) + ); + if($r && count($r)) { +$o .= <<< EOT + + + + + +EOT; + + + // $o .= '
'; + return $o; + } + } + } + $contact_id = intval(argv(1)); if(! $contact_id) return; diff --git a/view/css/default.css b/view/css/default.css index 7846a09ac..80ec47722 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -20,4 +20,5 @@ section { top: 64px; left: 250px; display: block; + right: 15px; }