diff options
Diffstat (limited to 'mod/channel.php')
-rw-r--r-- | mod/channel.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/channel.php b/mod/channel.php index 34a1e2dda..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'] ); @@ -259,6 +259,7 @@ function channel_content(&$a, $update = 0, $load = false) { '$spam' => '0', '$nouveau' => '0', '$wall' => '1', + '$fh' => '0', '$page' => (($a->pager['page'] != 1) ? $a->pager['page'] : 1), '$search' => '', '$order' => '', |