diff options
| author | brunoais <brunoaiss@gmail.com> | 2015-11-24 07:31:37 +0000 | 
|---|---|---|
| committer | brunoais <brunoaiss@gmail.com> | 2015-11-24 07:31:37 +0000 | 
| commit | a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df (patch) | |
| tree | fc604afe985e051955550dcf9947d7188f5b8633 | |
| parent | 335be2e59fe9f5b63391a04ce7d79af56a4801a0 (diff) | |
| download | forums-a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df.tar forums-a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df.tar.gz forums-a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df.tar.bz2 forums-a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df.tar.xz forums-a3a163dea1c3ba23a1d3a1c80c4c63c6831c37df.zip | |
[feature/sql-bool-builder] Fixing misuse of LOGICAL_OP instead of STATEMENTS
PHPBB3-13652
| -rw-r--r-- | phpBB/phpbb/db/driver/driver.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/phpBB/phpbb/db/driver/driver.php b/phpBB/phpbb/db/driver/driver.php index a65d8caa52..5f06cb08fc 100644 --- a/phpBB/phpbb/db/driver/driver.php +++ b/phpBB/phpbb/db/driver/driver.php @@ -830,7 +830,7 @@ abstract class driver implements driver_interface  	{  		$operation = $operations_ary[self::LOGICAL_OP]; -		foreach ($operations_ary[self::LOGICAL_OP] as &$condition) +		foreach ($operations_ary[self::STATEMENTS] as &$condition)  		{  			switch ($condition[self::LOGICAL_OP])  			{ | 
