We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61565b0 commit 6352652Copy full SHA for 6352652
1 file changed
src/Database.php
@@ -374,7 +374,7 @@ public function prepareGroupBy($groupBy)
374
public function prepareLimit($limit, $offset = null)
375
{
376
if ($offset) {
377
- $this->setLimit = ' LIMIT ' . $limit . ', ' . $offset . '';
+ $this->setLimit = ' LIMIT ' . $offset . ', ' . $limit . '';
378
} else {
379
$this->setLimit = ' LIMIT ' . $limit . '';
380
}
0 commit comments