aboutsummaryrefslogtreecommitdiffstats
path: root/mod/channel.php
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2013-10-04 15:57:48 +0100
committerThomas Willingham <founder@kakste.com>2013-10-04 15:57:48 +0100
commita026832009608d9a492be35b9b462cf00a36d59d (patch)
tree9ce520738643db161ffc7a8633082a64ce057daf /mod/channel.php
parentff7182f441907065b852b24cbf86547752a9b9ad (diff)
downloadvolse-hubzilla-a026832009608d9a492be35b9b462cf00a36d59d.tar.gz
volse-hubzilla-a026832009608d9a492be35b9b462cf00a36d59d.tar.bz2
volse-hubzilla-a026832009608d9a492be35b9b462cf00a36d59d.zip
If an observer doesn't have view_stream perms, try for view_profile before
giving up.
Diffstat (limited to 'mod/channel.php')
-rw-r--r--mod/channel.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/channel.php b/mod/channel.php
index 5a66f5e07..e5af91b53 100644
--- a/mod/channel.php
+++ b/mod/channel.php
@@ -115,6 +115,11 @@ function channel_content(&$a, $update = 0, $load = false) {
$perms = get_all_perms($a->profile['profile_uid'],$ob_hash);
if(! $perms['view_stream']) {
+ // We may want to make the target of this redirect configurable
+ if($perms['view_profile']) {
+ notice( t('Insufficient permissions. Request redirected to profile page.') . EOL);
+ goaway (z_root() . "/profile/" . $a->profile['channel_address']);
+ }
notice( t('Permission denied.') . EOL);
return;
}