Small fix for deleted forum channels showing in the forum widget (had this after migration from RM on 1 or 2 channels)
This commit is contained in:
parent
2d45f9f385
commit
7206e8af3a
@ -1197,7 +1197,7 @@ function widget_forums($arr) {
|
|||||||
|
|
||||||
$perms_sql = item_permissions_sql(local_channel()) . item_normal();
|
$perms_sql = item_permissions_sql(local_channel()) . item_normal();
|
||||||
|
|
||||||
$r1 = q("select * from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and abook_channel = %d order by xchan_name $limit ",
|
$r1 = q("select * from abook left join xchan on abook_xchan = xchan_hash where ( xchan_pubforum = 1 or ((abook_their_perms & %d ) != 0 and (abook_their_perms & %d ) = 0) ) and xchan_deleted = 0 and abook_channel = %d order by xchan_name $limit ",
|
||||||
intval(PERMS_W_TAGWALL),
|
intval(PERMS_W_TAGWALL),
|
||||||
intval(PERMS_W_STREAM),
|
intval(PERMS_W_STREAM),
|
||||||
intval(local_channel())
|
intval(local_channel())
|
||||||
|
Reference in New Issue
Block a user