We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/lazychaser/laravel-nestedset/blob/2d5c99fe1bfbaa4004f8d6fb24475f7ff88bb526/src/QueryBuilder.php#L643C11-L643C14
In line 638 there is function columnPatch(...)
protected function columnPatch($col, array $params) { extract($params); /** @var int $height */ if ($height > 0) $height = '+'.$height; ...
checks $height > 0 but it should check $height >= 0
otherwise it generates an invalid SQL snippet if $cut is set.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/lazychaser/laravel-nestedset/blob/2d5c99fe1bfbaa4004f8d6fb24475f7ff88bb526/src/QueryBuilder.php#L643C11-L643C14
In line 638 there is function columnPatch(...)
checks $height > 0 but it should check $height >= 0
otherwise it generates an invalid SQL snippet if $cut is set.
The text was updated successfully, but these errors were encountered: