off by one
This commit is contained in:
parent
6a280c321d
commit
920396e402
|
@ -399,7 +399,7 @@ function network_content(&$a, $update = 0) {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$blowhard = $item['cid'];
|
$blowhard = $item['cid'];
|
||||||
if($blowhard_count > 3)
|
if($blowhard_count >= 3)
|
||||||
$o .= '</div>';
|
$o .= '</div>';
|
||||||
$blowhard_count = 0;
|
$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 author collapsing is in force but didn't get closed, close it off now.
|
||||||
|
|
||||||
if($blowhard_count > 3)
|
if($blowhard_count >= 3)
|
||||||
$o .= '</div>';
|
$o .= '</div>';
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue