summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-02-27 15:46:57 +0000
committerlsces <lester@lsces.co.uk>2026-02-27 15:46:57 +0000
commit1918817c7eec93cbf7203fc8f4bd0e0b62ed2468 (patch)
treea60e7cf903e294821c59324f8e13809416bb3d3f
parentcf9856d492df525be16b1e4613dbfa0f4eb4dde3 (diff)
downloadilluminate-firebird-1918817c7eec93cbf7203fc8f4bd0e0b62ed2468.tar.gz
illuminate-firebird-1918817c7eec93cbf7203fc8f4bd0e0b62ed2468.tar.bz2
illuminate-firebird-1918817c7eec93cbf7203fc8f4bd0e0b62ed2468.zip
Not sure what this hack is intended to address so 'hide' it for now. It was messing up using NOT LIKE in webtrees.
-rwxr-xr-xsrc/Query/FirebirdBuilder.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Query/FirebirdBuilder.php b/src/Query/FirebirdBuilder.php
index d1c6bca..9d74965 100755
--- a/src/Query/FirebirdBuilder.php
+++ b/src/Query/FirebirdBuilder.php
@@ -41,8 +41,8 @@ class FirebirdBuilder extends QueryBuilder
public function where($column, $operator = NULL, $value = NULL, $boolean = 'and')
{
- // detect is not search
- if (! str($operator)->contains('like', true)) {
+ // Not sure what this was intended to fix, but target hidden for now
+ if (! str($operator)->contains('hide', true)) {
return parent::where($column, $operator, $value, $boolean);
}