diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 0404d8256..6736c0f9d 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -14,6 +14,7 @@ - fixed #11565: Can't clear cache on plainblack.com - fixed #11540: Pending version tags are not completed on approval under certain conditions - fixed #11566: Group API: group membership cannot be checked without consideration of expiration dates. + - fixed #11567: EMS: Build badge page, ticket tab, pagination 7.9.4 - We're shipping underscore.js now for its suite of extremely handy utility diff --git a/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm b/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm index 78394896b..1ccce1362 100644 --- a/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm +++ b/lib/WebGUI/Asset/Wobject/EventManagementSystem.pm @@ -1888,7 +1888,7 @@ className='WebGUI::Asset::Sku::EMSTicket' and state='published' and revisionDate # gotta get to the page we're working with $counter++; - next unless ($counter >= ($startIndex * $numberOfResults)); + next unless ($counter >= $startIndex+1); # publish the data for this ticket my $description = $ticket->get('description');