maintain compatibility with recent zot6 changes

(cherry picked from commit 98b1c7a38c)
This commit is contained in:
zotlabs 2019-03-06 00:57:32 +00:00 committed by Mario
parent d407e5556e
commit c4714e95b6

View File

@ -685,8 +685,14 @@ class Libzot {
$adult_changed = 1;
if(intval($r[0]['xchan_deleted']) != intval($arr['deleted']))
$deleted_changed = 1;
// old style
if(intval($r[0]['xchan_pubforum']) != intval($arr['public_forum']))
$pubforum_changed = 1;
// new style 6-MAR-2019
if(array_key_exists('channel_type',$arr) && intval($arr['channel_type']) < 2 && intval($r[0]['xchan_pubforum']) !== intval($arr['channel_type'])) {
$pubforum_changed = 1;
$arr['public_forum'] = $arr['channel_type'];
}
if($arr['protocols']) {
$protocols = implode(',',$arr['protocols']);