diff options
author | marijus <mario@mariovavti.com> | 2014-04-08 22:07:06 +0200 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-04-08 22:07:06 +0200 |
commit | 9f621dac85c1c417b17d031e3ca2798c6b63ece7 (patch) | |
tree | 14697666c99d828f903772ae5bc4cb66373957ca /mod/channel.php | |
parent | 95751dddff2b1b7a2074d37a5b3102f256842ae4 (diff) | |
download | volse-hubzilla-9f621dac85c1c417b17d031e3ca2798c6b63ece7.tar.gz volse-hubzilla-9f621dac85c1c417b17d031e3ca2798c6b63ece7.tar.bz2 volse-hubzilla-9f621dac85c1c417b17d031e3ca2798c6b63ece7.zip |
change the way jot tools are displayed/hidden
Diffstat (limited to 'mod/channel.php')
-rw-r--r-- | mod/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php index 0551f2645..9ee82a682 100644 --- a/mod/channel.php +++ b/mod/channel.php @@ -115,7 +115,7 @@ function channel_content(&$a, $update = 0, $load = false) { 'acl' => (($is_owner) ? populate_acl($channel_acl) : ''), 'showacl' => (($is_owner) ? 'yes' : ''), 'bang' => '', - 'visitor' => (($is_owner || $observer) ? 'block' : 'none'), + 'visitor' => (($is_owner || $observer) ? true : false), 'profile_uid' => $a->profile['profile_uid'] ); |