make sure we have an integer value for askFor

This commit is contained in:
Evan Prodromou 2012-03-21 22:53:02 -04:00
parent d98a4be24e
commit d4bb8fa77a
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ abstract class FilteringNoticeStream extends NoticeStream
if ($hits === 0) {
$askFor = max(min(2 * $askFor, NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
} else {
$askFor = max(min((($total - $hits)*$startAt)/$hits, NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
$askFor = max(min(intval(ceil(($total - $hits)*$startAt/$hits)), NOTICES_PER_PAGE * 50), NOTICES_PER_PAGE);
}
common_debug(get_class($this) . ": ($offset, $limit) Round $round hits is $hits, results = $results.");