diff options
author | RedMatrix <info@friendica.com> | 2014-11-14 09:02:48 +1100 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-11-14 09:02:48 +1100 |
commit | 25d69a9068b16391e17a76d1dbc9b1faca7b319c (patch) | |
tree | b14060b8ceffd26cdb0df347c034ee468b40abde | |
parent | 9132a1c1954bcdeb3a7356212e2c8982e5878bbd (diff) | |
parent | a2d9dd18821d4e7717438f4addb41ed310819b8b (diff) | |
download | volse-hubzilla-25d69a9068b16391e17a76d1dbc9b1faca7b319c.tar.gz volse-hubzilla-25d69a9068b16391e17a76d1dbc9b1faca7b319c.tar.bz2 volse-hubzilla-25d69a9068b16391e17a76d1dbc9b1faca7b319c.zip |
Merge pull request #692 from habeascodice/master
missed during merge
-rw-r--r-- | mod/zfinger.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/zfinger.php b/mod/zfinger.php index a1a62dd3f..6f4febc6f 100644 --- a/mod/zfinger.php +++ b/mod/zfinger.php @@ -116,7 +116,7 @@ function zfinger_init(&$a) { } else { // check if it has characteristics of a public forum based on custom permissions. - $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d) limit 1", + $t = q("select abook_my_perms from abook where abook_channel = %d and (abook_flags & %d)>0 limit 1", intval($e['channel_id']), intval(ABOOK_FLAG_SELF) ); |