Skip to content

Commit

Permalink
update links
Browse files Browse the repository at this point in the history
  • Loading branch information
Arhell committed Jun 29, 2024
1 parent 76150c5 commit be24d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/db/mssql/QueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected function newBuildOrderByAndLimit($sql, $orderBy, $limit, $offset)
}
$sql .= $this->separator . $orderBy;

// http://technet.microsoft.com/en-us/library/gg699618.aspx
// https://technet.microsoft.com/en-us/library/gg699618.aspx
$offset = $this->hasOffset($offset) ? $offset : '0';
$sql .= $this->separator . "OFFSET $offset ROWS";
if ($this->hasLimit($limit)) {
Expand Down

0 comments on commit be24d12

Please sign in to comment.