diff options
author | friendica <info@friendica.com> | 2013-08-29 20:54:42 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-29 20:54:42 -0700 |
commit | 74582630177b104f35113cee77d2c7ac5f74f412 (patch) | |
tree | 031770083dc6e2462e6190b59e6c59c6ea5c0624 /mod/page.php | |
parent | 85e291f5357bc28b108378816af97b545aacca3f (diff) | |
download | volse-hubzilla-74582630177b104f35113cee77d2c7ac5f74f412.tar.gz volse-hubzilla-74582630177b104f35113cee77d2c7ac5f74f412.tar.bz2 volse-hubzilla-74582630177b104f35113cee77d2c7ac5f74f412.zip |
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.
Diffstat (limited to 'mod/page.php')
-rw-r--r-- | mod/page.php | 15 |
1 files changed, 6 insertions, 9 deletions
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; |