[feature/sql-bool-builder] Also use parenthesis for the NOT operator

Be on the safe side, also use parenthesis for the NOT operator

PHPBB3-13652
This commit is contained in:
brunoais 2015-02-28 18:14:00 +00:00
parent 5c1850e10e
commit 51737be616

View file

@ -831,7 +831,7 @@ abstract class driver implements driver_interface
break;
case 'NOT':
$condition = ' NOT ' . $this->_process_boolean_tree($condition);
$condition = ' NOT (' . $this->_process_boolean_tree($condition) . ') ';
break;