From 74582630177b104f35113cee77d2c7ac5f74f412 Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 29 Aug 2013 20:54:42 -0700 Subject: I've got a pretty good idea of how to bootstrap, parse and render Comanche now. This does not mean it's close to being presentable - far from it. --- mod/page.php | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'mod/page.php') diff --git a/mod/page.php b/mod/page.php index 110d9699c..c63932b5e 100644 --- a/mod/page.php +++ b/mod/page.php @@ -9,15 +9,11 @@ function page_init(&$a) { $which = argv(1); $profile = 0; - $channel = $a->get_channel(); - - if((local_user()) && (argc() > 2) && (argv(2) === 'view')) { - $which = $channel['channel_address']; - $profile = argv(1); - } - profile_load($a,$which,$profile); + if($a->profile['profile_uid']) + head_set_icon($a->profile['thumb']); + } @@ -65,7 +61,8 @@ function page_content(&$a) { return; } -// Use of widgets should be determined by Comanchie, but we don't have it yet, so... + // Use of widgets should be determined by Comanche, but we don't have it yet, so... + if ($perms['write_pages']) { $chan = $a->channel['channel_id']; $who = $channel_address; @@ -75,7 +72,7 @@ function page_content(&$a) { xchan_query($r); $r = fetch_post_tags($r,true); - $a->profile = array('profile_uid' => $u[0]['channel_id']); + $o .= prepare_page($r[0]); return $o; -- cgit v1.2.3