Skip to content

Commit

Permalink
Merge branch 'master' of github.com:lesstif/php-jira-rest-client
Browse files Browse the repository at this point in the history
  • Loading branch information
lesstif committed May 14, 2019
2 parents e1118ca + 93e2337 commit f7c3fcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ try {
$page = $totalCount / $maxResult;

for ($startAt = 1; $startAt < $page; $startAt++) {
$ret = $issueService->search($jql, $startAt, $maxResult);
$ret = $issueService->search($jql, $startAt * $maxResult, $maxResult);

print ("\nPaging $startAt\n");
print ("-------------------\n");
Expand Down

0 comments on commit f7c3fcd

Please sign in to comment.