diff options
author | Friendika <info@friendika.com> | 2011-07-04 21:13:10 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-07-04 21:13:10 -0700 |
commit | 1048ee744edf8904db1949a96859dcc9343f6092 (patch) | |
tree | 82aeaef6e0f8ee9bb98ba864c7b009561e264234 /mod/community.php | |
parent | 20d3aa2e77e4ba4c12d2a7332c7ac5f3a8f6b635 (diff) | |
download | volse-hubzilla-1048ee744edf8904db1949a96859dcc9343f6092.tar.gz volse-hubzilla-1048ee744edf8904db1949a96859dcc9343f6092.tar.bz2 volse-hubzilla-1048ee744edf8904db1949a96859dcc9343f6092.zip |
reversed logic
Diffstat (limited to 'mod/community.php')
-rw-r--r-- | mod/community.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/community.php b/mod/community.php index aaa3ad9ed..b10e3bfda 100644 --- a/mod/community.php +++ b/mod/community.php @@ -10,7 +10,7 @@ function community_content(&$a, $update = 0) { return; } - if(! get_config('system','no_community_page')) { + if(get_config('system','no_community_page')) { notice( t('Not available.') . EOL); return; } |