Skip to content

Commit 5ed612b

Browse files
committed
changes
1 parent 25a068f commit 5ed612b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Where.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public function add($field, $value, $operator = "=", $value_type = "string")
2020
strpos($field, "=") !== FALSE
2121
|| strpos($field, ">") !== FALSE
2222
|| strpos($field, "<") !== FALSE
23-
|| strpos(strtoupper($field, "NOT")) !== FALSE
24-
|| strpos(strtoupper($field, "IN")) !== FALSE
23+
|| strpos(strtoupper($field), "NOT") !== FALSE
24+
|| strpos(strtoupper($field), "IN") !== FALSE
2525
)
2626
{
2727
$operator = "";

0 commit comments

Comments
 (0)