We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 593c3a2 commit 7cc8094Copy full SHA for 7cc8094
Response/DatatableQueryBuilder.php
@@ -588,7 +588,7 @@ private function setOrderBy(QueryBuilder $qb)
588
private function setLimit(QueryBuilder $qb)
589
{
590
if (true === $this->features->getPaging() || null === $this->features->getPaging()) {
591
- if (isset($this->requestParams['start']) && self::DISABLE_PAGINATION !== $this->requestParams['length']) {
+ if (isset($this->requestParams['start']) && self::DISABLE_PAGINATION !== (int) $this->requestParams['length']) {
592
$qb->setFirstResult($this->requestParams['start'])->setMaxResults($this->requestParams['length']);
593
}
594
} elseif ($this->ajax->getPipeline() > 0) {
0 commit comments