aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-08-22 17:04:13 -0700
committerredmatrix <git@macgirvin.com>2016-08-22 17:06:40 -0700
commitb0d3c17f1964fc1a0aba6f14af86dcd27d096fd2 (patch)
treedd9e1802f898251a128b061115be7572e1b1ab65 /include
parentd4ef3c183cb0dd9a51b86ed387d5ae9af1c0b249 (diff)
downloadvolse-hubzilla-b0d3c17f1964fc1a0aba6f14af86dcd27d096fd2.tar.gz
volse-hubzilla-b0d3c17f1964fc1a0aba6f14af86dcd27d096fd2.tar.bz2
volse-hubzilla-b0d3c17f1964fc1a0aba6f14af86dcd27d096fd2.zip
public forum fallback checking (when custom/expert permissions are applied) was looking at owner rather than observer perms
Diffstat (limited to 'include')
-rw-r--r--include/zot.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/zot.php b/include/zot.php
index 01b29f74b..c3c924113 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -3708,6 +3708,8 @@ function zotinfo($arr) {
}
}
+ $ztarget_hash = (($ztarget && $zsig) ? make_xchan_hash($ztarget,$zsig) : '' );
+
$r = null;
if(strlen($zhash)) {
@@ -3783,11 +3785,11 @@ function zotinfo($arr) {
if($role === 'forum' || $role === 'repository') {
$public_forum = true;
}
- else {
+ elseif($ztarget_hash) {
// check if it has characteristics of a public forum based on custom permissions.
$t = q("select * from abconfig where abconfig.cat = 'my_perms' and abconfig.chan = %d and abconfig.xchan = '%s' and abconfig.k in ('tag_deliver', 'send_stream') ",
intval($e['channel_id']),
- dbesc($e['channel_hash'])
+ dbesc($ztarget_hash)
);
$ch = 0;
@@ -3889,9 +3891,6 @@ function zotinfo($arr) {
$ret['follow_url'] = z_root() . '/follow?f=&url=%s';
- $ztarget_hash = (($ztarget && $zsig)
- ? make_xchan_hash($ztarget,$zsig)
- : '' );
$permissions = get_all_perms($e['channel_id'],$ztarget_hash,false);