aboutsummaryrefslogtreecommitdiffstats
path: root/include/text.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-12-03 09:46:49 +0000
committerMario <mario@mariovavti.com>2018-12-03 10:49:08 +0100
commitc50e3a702aa93cc9fde1380e8addaeb62e4139b2 (patch)
tree1fbd681f7c9210a1fa36a0850dc8bc7a4e65b0b3 /include/text.php
parent2173ef5fb6025543398d2ee7b4d11c5c0971e92b (diff)
downloadvolse-hubzilla-c50e3a702aa93cc9fde1380e8addaeb62e4139b2.tar.gz
volse-hubzilla-c50e3a702aa93cc9fde1380e8addaeb62e4139b2.tar.bz2
volse-hubzilla-c50e3a702aa93cc9fde1380e8addaeb62e4139b2.zip
more notifications fixes
(cherry picked from commit 9ef6c57ca59aa318a3564f6b48c6442870650d3e)
Diffstat (limited to 'include/text.php')
-rw-r--r--include/text.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php
index cce8a6ed5..bd0d8048d 100644
--- a/include/text.php
+++ b/include/text.php
@@ -3421,7 +3421,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)
);