diff --git a/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php b/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php index 7e09d0a965af7c3580cdae421cb61e1ac597f29e..667ab20db9aaccb2ff16a65c3f98ff08ed0df36d 100644 --- a/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php +++ b/module/VuFindSearch/src/VuFindSearch/Backend/Primo/Connector.php @@ -303,10 +303,7 @@ class Connector implements \Zend\Log\LoggerAwareInterface } // QUERYSTRING: indx (start record) - $recordStart = $args["pageNumber"]; - if ($recordStart != 1) { - $recordStart = ($recordStart * 10) + 1; - } + $recordStart = ($args["pageNumber"] - 1) * $args['limit'] + 1; $qs[] = "indx=$recordStart"; // TODO: put bulksize in conf file? set a reasonable cap...