We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f11261 commit 8d9c3dbCopy full SHA for 8d9c3db
1 file changed
src/JQL.php
@@ -1700,7 +1700,14 @@ private function check_clause( $clause, $row )
1700
switch( $clause['operand'] )
1701
{
1702
case '=':
1703
- return strtolower($value) == strtolower($compare);
+ if( is_scalar($value) && is_scalar($compare) )
1704
+ {
1705
+ return strtolower($value) == strtolower($compare);
1706
+ }
1707
+ else
1708
1709
+ return false;
1710
1711
break;
1712
1713
case '==':
0 commit comments