missing s
This commit is contained in:
parent
db176eec40
commit
80e4338314
@ -124,7 +124,7 @@ class WebServer {
|
|||||||
// now that we've been through the module content, see if the page reported
|
// now that we've been through the module content, see if the page reported
|
||||||
// a permission problem and if so, a 403 response would seem to be in order.
|
// a permission problem and if so, a 403 response would seem to be in order.
|
||||||
|
|
||||||
if(stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
|
if(is_array($_SESSION['sysmsg']) && stristr(implode("", $_SESSION['sysmsg']), t('Permission denied'))) {
|
||||||
header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.'));
|
header($_SERVER['SERVER_PROTOCOL'] . ' 403 ' . t('Permission denied.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1568,7 +1568,7 @@ function is_public_profile() {
|
|||||||
return false;
|
return false;
|
||||||
$channel = App::get_channel();
|
$channel = App::get_channel();
|
||||||
if($channel) {
|
if($channel) {
|
||||||
$perm = \Zotlabs\Access\PermissionLimit::Get($channel['channel_id'],'view_profile');
|
$perm = \Zotlabs\Access\PermissionLimits::Get($channel['channel_id'],'view_profile');
|
||||||
if($perm == PERMS_PUBLIC)
|
if($perm == PERMS_PUBLIC)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user