aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-22 17:52:30 -0700
committerredmatrix <git@macgirvin.com>2016-05-22 17:52:30 -0700
commit5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173 (patch)
tree36b583cd45fd7ba27f505678a9a080a7894d7a1c /include/widgets.php
parentd7d347469c234e14d5d097fa3f6ab90f715324aa (diff)
downloadvolse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.tar.gz
volse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.tar.bz2
volse-hubzilla-5e0698ba8731e7e4659a24c0ab4fa9c4a1aef173.zip
turn the oft-repeated block_public ... check into a function observer_prohibited()
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/widgets.php b/include/widgets.php
index a158633ad..27f50e9be 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -12,13 +12,13 @@ require_once('include/attach.php');
function widget_profile($args) {
- $block = (((get_config('system', 'block_public')) && (! local_channel()) && (! remote_channel())) ? true : false);
+ $block = observer_prohibited();
return profile_sidebar(App::$profile, $block, true);
}
function widget_zcard($args) {
- $block = (((get_config('system', 'block_public')) && (! local_channel()) && (! remote_channel())) ? true : false);
+ $block = observer_prohibited();
$channel = channelx_by_n(App::$profile_uid);
return get_zcard($channel,get_observer_hash(),array('width' => 875));
}
@@ -369,7 +369,7 @@ function widget_fullprofile($arr) {
if(! App::$profile['profile_uid'])
return;
- $block = (((get_config('system', 'block_public')) && (! local_channel()) && (! remote_channel())) ? true : false);
+ $block = observer_prohibited();
return profile_sidebar(App::$profile, $block);
}
@@ -379,7 +379,7 @@ function widget_shortprofile($arr) {
if(! App::$profile['profile_uid'])
return;
- $block = (((get_config('system', 'block_public')) && (! local_channel()) && (! remote_channel())) ? true : false);
+ $block = observer_prohibited();
return profile_sidebar(App::$profile, $block, true, true);
}