aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-12-03 10:46:49 +0100
committerMario Vavti <mario@mariovavti.com>2018-12-03 10:46:49 +0100
commit9ef6c57ca59aa318a3564f6b48c6442870650d3e (patch)
tree006a3beb6effecd2f892a61d1252ad7a24f480ea /include
parent443d7684dbe8c1c3540df5aeb719403d67789747 (diff)
downloadvolse-hubzilla-9ef6c57ca59aa318a3564f6b48c6442870650d3e.tar.gz
volse-hubzilla-9ef6c57ca59aa318a3564f6b48c6442870650d3e.tar.bz2
volse-hubzilla-9ef6c57ca59aa318a3564f6b48c6442870650d3e.zip
more notifications fixes
Diffstat (limited to 'include')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index 076c98407..d99e8fd60 100644
--- a/include/text.php
+++ b/include/text.php
@@ -3425,7 +3425,7 @@ function get_forum_channels($uid) {
$sql_extra = (($xf) ? " and ( xchan_hash in (" . $xf . ") or xchan_pubforum = 1 ) " : " and xchan_pubforum = 1 ");
- $r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
+ $r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_addr, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
intval($uid)
);