aboutsummaryrefslogtreecommitdiffstats
path: root/mod/network.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-28 20:06:45 -0700
committerFriendika <info@friendika.com>2011-03-28 20:06:45 -0700
commit920396e4024e56c3e00f1f159268c2aba16e4609 (patch)
treee8f6bbe278a68ed1a7cf714e1693c00f3193a857 /mod/network.php
parent6a280c321daedaa8444a2a64e1a824ae60a9229b (diff)
downloadvolse-hubzilla-920396e4024e56c3e00f1f159268c2aba16e4609.tar.gz
volse-hubzilla-920396e4024e56c3e00f1f159268c2aba16e4609.tar.bz2
volse-hubzilla-920396e4024e56c3e00f1f159268c2aba16e4609.zip
off by one
Diffstat (limited to 'mod/network.php')
-rw-r--r--mod/network.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/network.php b/mod/network.php
index 8e8fe8d1e..2ff15a29b 100644
--- a/mod/network.php
+++ b/mod/network.php
@@ -399,7 +399,7 @@ function network_content(&$a, $update = 0) {
}
else {
$blowhard = $item['cid'];
- if($blowhard_count > 3)
+ if($blowhard_count >= 3)
$o .= '</div>';
$blowhard_count = 0;
}
@@ -585,7 +585,7 @@ function network_content(&$a, $update = 0) {
// if author collapsing is in force but didn't get closed, close it off now.
- if($blowhard_count > 3)
+ if($blowhard_count >= 3)
$o .= '</div>';