diff options
author | Friendika <info@friendika.com> | 2011-07-28 19:18:07 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-28 19:18:07 -0700 |
commit | 9b2ddb2cc28de56f3f4cbbd1d5ff77da72a01e73 (patch) | |
tree | 19744ef7e71572d28a5a91e62a44a81ddf36573f /mod | |
parent | a45b94033eaba3bbddec701c3f87310a6d2a18fe (diff) | |
download | volse-hubzilla-9b2ddb2cc28de56f3f4cbbd1d5ff77da72a01e73.tar.gz volse-hubzilla-9b2ddb2cc28de56f3f4cbbd1d5ff77da72a01e73.tar.bz2 volse-hubzilla-9b2ddb2cc28de56f3f4cbbd1d5ff77da72a01e73.zip |
auto-friend profiles showing up in directory as community pages
Diffstat (limited to 'mod')
-rw-r--r-- | mod/profile.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile.php b/mod/profile.php index f4b6bfaf1..71912458f 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -21,7 +21,7 @@ function profile_init(&$a) { profile_load($a,$which,$profile); - if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] & PAGE_COMMUNITY)) { + if((x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY)) { $a->page['htmlhead'] .= '<meta name="friendika.community" content="true" />'; } if(x($a->profile,'openidserver')) |