From a4960360669daa0a0c842427185ce1ada3b4ab97 Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 28 Jan 2015 20:56:04 -0800 Subject: local_user => local_channel --- mod/profile.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/profile.php') diff --git a/mod/profile.php b/mod/profile.php index 792bf34c5..e37aea863 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -21,12 +21,12 @@ function profile_init(&$a) { $profile = ''; $channel = $a->get_channel(); - if((local_user()) && (argc() > 2) && (argv(2) === 'view')) { + if((local_channel()) && (argc() > 2) && (argv(2) === 'view')) { $which = $channel['channel_address']; $profile = argv(1); $r = q("select profile_guid from profile where id = %d and uid = %d limit 1", intval($profile), - intval(local_user()) + intval(local_channel()) ); if(! $r) $profile = ''; @@ -66,7 +66,7 @@ function profile_content(&$a, $update = 0) { } - $is_owner = ((local_user()) && (local_user() == $a->profile['profile_uid']) ? true : false); + $is_owner = ((local_channel()) && (local_channel() == $a->profile['profile_uid']) ? true : false); if($a->profile['hidewall'] && (! $is_owner) && (! remote_user())) { notice( t('Permission denied.') . EOL); -- cgit v1.2.3