Skip to content

Commit c352da3

Browse files
committed
Merge pull request #86 from kohana/3.2/master
Merge 3.2/master into 3.3/develop Closes #86, merged manually due to github merge problem
2 parents 898a942 + 6c87d0f commit c352da3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/Kohana/Database/Query/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected function _compile_conditions(Database $db, array $conditions)
8080
// Convert "val = NULL" to "val IS NULL"
8181
$op = 'IS';
8282
}
83-
elseif ($op === '!=')
83+
elseif ($op === '!=' OR $op === '<>')
8484
{
8585
// Convert "val != NULL" to "valu IS NOT NULL"
8686
$op = 'IS NOT';

0 commit comments

Comments
 (0)